Yes, it is possible to include the Sales Insights data into the activity history. I would definitely recommend being intentional with what you have populated in the activity histor...
Is it a requirement to have specific dates and times populated in the email? It might be more trouble than it's worth to try to get that content to dynamically populate. Lets say, ...
Got it. The fields that are being evaluated are integer fields not score fields. I changed the "$oppScoreField" for "$oppIntegerField".Thanks for all your help.
Regret to say but this didn't work for me either. Going to go an alternate route and create a Boolean field that gets updated by the 2 fields I need evaluated and run my script off...
Sorry dude, very new to velocity scripting.I just tried the following and again it didn't work:#if( $convert.parseNumber($OpportunityList.get(0).Highest_Score__c) > 0 || $convert.p...
The second part of that statement is a different field I also want to evaluate. Are you saying to drop the "$convert.parsenumber" piece?I just tried the following and it did not wo...
Thank you Sanford.To turn this into an OR statement, would the logic need to be:#if( $convert.parseNumber($OpportunityList.get(0).Highest_Score__c) > 0 || $convert.parseNumber(${Op...
Still trying to troubleshoot this and I am thinking that the field is not being recognized as a integer field.I set $test = highest score + 1 and the output was [highest score]1.
Hey All,I am trying to put together a simple script to populate an image url based upon a integer value. I essentially want 1 image if the value is greater than 0 and a default ima...