@pen one I was able to. I added a custbody field that was an address book type. Sourced it from the entity. I had some weird sourcing behavior using the native entity field so I had to create a copy of it and source form that.
Then I created a text area field to hold the text of the address, because the address book field only showed the address label.
I found a suiteanswer that contained a ss 1.0 client script that sources in the text of the address to the text area field. The suiteanswer code had 2 errors in it, but when I fixed those it worked great.
Answer ID: 81849
The errors are, the suiteanswer says this will work on vendor records, but the script is trying to search customer records. So where you see the work 'customer' you need to have 'vendor'
The next error is on the for line. it says
x < rec.getLineItemCount
it needs to be
x <= rec.getLineItemCount
The way it is listed in the suiteanswer, it can never find the last address in the list.
They