We have been entering mailing addresses into Salesforce with a standard "USA" when referring to United States of America, and 2 letter codes for the states.
I'm creating a FaaS form on our website for donations. It uses an SSI to add the code for states and countries. The SSI file includes all the states (and another file for countries)
Obviously, the transaction is going to go through C&P before it goes into SF. If I want the record in Salesforce to have the 2 letter code recorded for the state and "USA" used when referring to United States of America, how should I modify the text in my SSI so as not to cause issues when going through C&P?
thanks, Amanda
I'm creating a FaaS form on our website for donations. It uses an SSI to add the code for states and countries. The SSI file includes all the states (and another file for countries)
ex: <option value="North Carolina">North Carolina</option>
Obviously, the transaction is going to go through C&P before it goes into SF. If I want the record in Salesforce to have the 2 letter code recorded for the state and "USA" used when referring to United States of America, how should I modify the text in my SSI so as not to cause issues when going through C&P?
- ex: <option value="North Carolina">NC</option>
- ex: <option value="NC">North Carolina</option> OR
- ex: <option value="NC">NC</option>
thanks, Amanda
Comment