cancel
Showing results for 
Search instead for 
Did you mean: 

Need mailing address in a vendor integration template

Kathy_Scott
Explorer
0 Kudos

I've created a template for a vendor file that provides basic demographic information. We have home address and want to add mailing address. When I try to retreive the mailing address I am getting the home address information instead. It appears they both use Address1, Address2, etc. from the Addresses entity but an If/Then statement specifying address type 'Mailing" has no impact.

I appreciate your guidance on what I'm missing here!

View Entire Topic
Kathy_Scott
Explorer
0 Kudos

In the way these things go, after I posted this question I figured it out. It's an If/Then/Else statement for each address element, using field filters. For address line 1:

If address1 (field filter address type mailing) is not equal to ""

Then address1 (field filter address type mailing)

else address1 (field filter address type home)

The results are if there is a mailing address then that value is returned - if not, the home address is returned.