Hi Everyone, is there a way to access the Company ...
# suitescript
j
Hi Everyone, is there a way to access the Company Information using 1.0
n
Can you tell what exactly you want from Company information? Here is a working example that might help you: //load Netsuite configuration page var companyInfo = nlapiLoadConfiguration('companyinformation'); //get field values var ShipAddr1 = companyInfo.getFieldValue('shippingaddress1'); var shipCity = companyInfo.getFieldValue('shippingcity'); var shipState = companyInfo.getFieldValue('shippingstate'); var shipZip = companyInfo.getFieldValue('shippingzip'); var shipCountry = companyInfo.getFieldValue('shippingcountry');
j
Hi Nik. Thanks for this.
goodluck 1
I'll be testing this.
n
Sure. Let me know how it went for you.