can you load the Customer Record from the Sales Or...
# suitescript
f
can you load the Customer Record from the Sales Order in a script ?
s
sure
Copy code
const so = new SalesOrder(123)
const customer = new Customer(so.entity)
f
thanks so much 🙂