My Stuff
Comments
-
Hi Martha, this is currently logged as an enhancement. For your reference, you may vote on Enhancement 122387 : Ability to add custom fields on the Package Sub-tab when doing Item Fulfillment for tracking and monitoring.
-
Hello, see my response above.
-
Hello, I made this work on my end. I modified the sample XML file and code in Help article: N/xml Module. Here are the steps: 1. Upload BookSample.xml in File Cabinet > SuiteScripts folder. See attached for the XML file. 2. Save this as a .js file: /** *@NApiVersion 2.x *@NScriptType Suitelet */define(['N/xml', 'N/file'],…
-
This is due to the recent change to the domain used by our accounts. Previously, it depends on data center (e.g. https://system.netsuite.com). Currently, we are now using account-specific domains (https://{accountid}.app.netsuite.com). This domain change has different effects to integrations such as scripts, inbound…
-
You can create a script that employs N/ui/dialog module in SuiteScript 2.0 or alert in native JavaScript.
-
Revenue Recognition Journal Entry also has the ID journalentry, just like the standard Journal Entry record. The main difference between the two JEs is that Rev Rec JE has the field isfromrevrec = T. You can use N/record in SuiteScript 2.0 to create Rev Rec JEs.
-
There are two ways to deploy a client script: record-level and form-level. As for Item Demand Plan, there is an existing defect on not being able to deploy record-level client scripts. You may file a case and ask the support rep to attach it to Issue 249287 : SuiteScript > Not able to deploy record-level client script on…
-
Status is a field in the Customer record, so your custom role would need the Edit permission for Customer record to edit that field. If you want them to only edit the Status field, you can create a custom form tailored for your custom role. If you really want to prevent the role from editing the Customer record, you can…
-
There is an enhancement request for this - 242722 : Setup> Customization> Center Links. Custom Center links to accept relative path, and dynamically generate the URL based on production or test environment. I tried starting the link with https://system.netsuite.com/... and it automatically redirected my links to…
-
You are not getting data for the custom field because Store Value is unchecked, this makes the custom field read-only. From the name itself (Store Value), it means that the custom field does not store the value in the database. As an alternate solution: 1. Create a copy of your custom field. But for this duplicate field,…
-
Importing the XML to your NetSuite account is possible via SDF (SuiteCloud Development Framework). You may check Help article 'Creating an XML Definition in SuiteCloud IDE Plug-in for Eclipse' for more info. I suggest you read into Help articles 'SuiteCloud Development Framework' and 'SuiteCloud IDE' first.
-
This appears like an enhancement to me. There is no option to mass revoke tokens in Help article 'Viewing, Editing, Creating, and Revoking TBA Tokens'. You may (a) submit this on SuiteIdeas or (b) file a support case and ask the support rep to file an enhancement request on your behalf.
-
It is still not possible to use SuiteScript 2.0 for Email Capture Plug-in. This is logged as Enhancement 437694 : SuiteScript 2.0 support for Email Capture Plug-in. Your workaround looks valid to me (though I haven't tested it yet).
-
Hello, this is still an enhancement. Please refer to Issue 213744 : Promotion Code > Expose Items sublist in SuiteScript. The enhancement is still waiting to be reviewed by the Product Team.
-
There are some objects that (1) cannot be created or modified by SuiteScript or (2) are not yet supported in Records Browser so to answer your main question - no, script cannot handle all NetSuite customizations. For your other questions: 1. You can create a search via script and custom record. In SuiteScript 2.0, you can…
-
You are not getting any logs because when you change the Deployment Status to Released, Log Level switches to Error. This is the reason why log.debug did not return "shipitem". If you used log.error or switched your Log Level to Debug, you'll get the "shipitem" log. I tested your code on a RESTlet with Status = Released…