Returns a pipe bar (|) delimited list of the details for an account for specific fields only.
SFGetAccountDetailByNameForSpecificFields([Account Name],[Field List],[Connect to Salesforce])
Where:
Account Name is the name of the account in Salesforce (case sensitive).
Field List is a pipe bar (|) delimited list of fields for which to get the account details. Must be valid fields.
Connect to Salesforce False to NOT connect, any other value to connect. Can be used as a way to refresh the data, by simply changing this value.
Rule | Meaning |
---|---|
SFGetAccountDetailByNameForSpecificFields("Amazon Warriors","id",TRUE) | Returns the ID of the account from the account name. |
SFGetAccountDetailByNameForSpecificFields(AccountNameReturn,"id|Name|Type|BillingAddress",LoginReturn) | Returns the ID, Name, Account Type and BillingAddress from the AccountName control. |