Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi @SanfordWhiteman , I just pulled the field into a new script on its own and on test, no values were appearing. Might have solved that mystery there.
We can see the object in the editor: However, it is a SFDC custom object, so the raw values are not visible on the persons record details.
Hi @SanfordWhiteman , made those changes and data was still not pulling in. I believe we found the issue. If the custom object is related to the Account but through a regular lookup relationship and not as a Master Detail relationship, could that impact the data coming through?
Got it, so something more along the lines like this should be expected to pull in the first value: ## standard Velocity date/time includes#set($sortedlist = $sorter.sort($Practice__cList,"updatedAt:desc"))#foreach($practicelist in $sortedlist)#set ($company=$lead.Company)#set ($practice=$lead.Practi...
Hi Sanford, In this example the custom object only has one record for each contact so we should only need the one record (or first record) that exists. Ill make that change in the script and see if it solves the issue.
Hi there could use some help with troubleshooting some velocity script issues we are running into. We have a custom SFDC object that is related to the Person record via the account. We have checked off the fields used in the script as well as the company field. Here is the script we are trying to ge...