Is there any way to get `billaddresslist` and not ...
# suitescript
y
Is there any way to get
billaddresslist
and not just the
billaddress
from a search for a transaction? What I need is to he able to get the individual pieces of the billing address from the record. The search I have now:
Copy code
var searchResult = search.lookupFields({
  type: search.Type.TRANSACTION,
  id: internalId,
  columns : [ 'billaddress' ]
});
b
you should have 2 options here
you can use columns like
billaddress3
or you can use columns from the billing address join
billingaddress.address1