• palakwai
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Is it possible to receive outbound notifications for Cases when comments are added to the case or data within related tables is changed?  
I have some Java Script behind a button that is trivial. The below reproduces the behavior:
 
Code:
function ShowId(showthis)
{
        alert(showthis);
}

ShowId("Opportunity ID={!Opportunity.Id}");

 
For some odd reason the Opportunity ID is truncated for selected Opportunities. For example, if I have an Opportunity with Id = "00600000007YFgYAAW" what shows in the alert is "Opportunity ID=00600000007YFgY"
 
Others show the full Id without problem.
 
Any thoughts?