to
Various Address Components of Address Type field on a Standard Object.
e.g. I have a field on CustomObject called AddresLine1__c
There is a standard Address type field on Lead Object called Address
Using a Flow, how can I assign
CustomObject-->AddressLine1__c to Lead-->Address-->Address1
1 Antwort
The standard address field is composite field. So you should be assigning the values to the individual address fields.
So,
Account.BillingStreet = CustomObject__c.Street
Account.BillingCity = CustomObject__c.City
Account.BillingState = CustomObject__c.State
Account.BillingCountry = CustomObject__c.Country
... so on