My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
Hi, Using Suite Script how to Cancel the Sales Order.Is there any possible ways?Could you please suggest?
-
Hey Anne, The Issue is with the field internal ID,check there is a blank space between the internal ID characters.Give the correct field internal ID and Check! Thanks, Arun.
-
Hey Sean Murphy, Thanks for your response.But getting the below error. TypeError: Cannot call method "getAllColumns" of undefined Thanks, Arun.
-
Inventory Detail is a subrecord of Inventory Transfer Record.So you need to use like below. record=Inventory Transfer Record. Code: var inventoryDetailSubRecord = record.createCurrentLineItemSubrecord('inventory','inventorydetail'); inventoryDetailSubRecord.selectNewLineItem('inventoryassignment');…
-
Email Template is the Placeholder here! Thanks, Arun
-
Hi, Use the below code and let me know if you still encountering an issue. // Send email using exiting email template var IntemailTempId = IntEmailTemplateID; // internal id of the email template var ObjemailTemp = nlapiLoadRecord('emailtemplate',IntemailTempId); var StremailSubj = ObjemailTemp.getFieldValue('subject');…
-
Hello everyone, I'm trying to display the PDF content in suite script 2.0 But I'm not successful and I'm able to do it in suite script 1.0.Please see the below code and suggest me what I'm missing here. 1.0 Sample code to display PDF on suite let page-Working) var xmlStr = '<?xml version="1.0"?>\n<!DOCTYPE pdf PUBLIC…