Returns a pipe bar (|) delimited list of all of the values in a specific picklist within Salesforce.
SFGetPicklist ([Object Name],[Picklist Name])
Where:
Object Name is the name of the object in Salesforce (e.g. Account, Contact)
Picklist Name is the name of the specific picklist for this object type in Salesforce (e.g. Type for Account).
Rule | Meaning |
---|---|
SFGetPicklist("ActivityHistory","Status") | Returns a pipe bar (|) delimited list of all the values from the Status field of the ActivityHistory object. |
SFGetPicklist(SalesforceObjectsReturn,Left(ObjectFieldDataReturn,Find(",",ObjectFieldDataReturn)-1)) | Returns a pipe bar (|) delimited list of all the values from the ObjectFieldData control of the SalesforceObject control. |