My Stuff
Comments
-
All top level categories and pages load fast for me as well.
-
SuiteAnswer 32891 provides this example: Most of the time, Suitelets are being used to retrieve information. If the user would like to store the data coming from the Suitelet to a Custom Form, below is a sample: function suiteletToCustomForm(request, response) { var form = nlapiCreateForm('Suitelet Form');…
-
KMcC7808, you can wrap code using the code (#) tag in the advanced editor: [ATTACH=JSON]{"data-align":"none","data-size":"full","title":"Capture.PNG","data-attachmentid":440470}[/ATTACH]
-
Support filed Defect 467926 for this. SuiteAnswer Id: 41890 includes steps on how to ensure RESTlet and web services integrations are data-center agnostic.
-
Hi Brandon, you posted this in the SuitePeople Core HR forum. I moved your topic to the scripting forum.
-
According to the status page, NetSuite is currently experiencing issues affecting Web Services/RESTlet integrations. The issue is with integrations making use of incorrect Data Center URLs. As interim solution, please make sure to correctly use your account's intended Data Center URL. Our engineers are actively…
-
I checked with our SME's who confirmed that the status field does not currently work with the following: [LIST] [*]Setting 'Status' on the record object (using nlapiLoadRecord and then submitting the record) [*]Client Script [*]nlapiSetFieldText [/LIST] Support did file Enhancement Request 362857 : SuiteScript > Inventory…
-
Had to rebuild the forum search index. It should work now.
-
The search criteria is not restrictive enough. You can try something like, 'set current line item' instead.
-
The Sublist API topic was recently updated. You can find it here.
-
Both examples are provided in SuiteAnswers Answer Id: 33426 - https://netsuite.custhelp.com/app/answers/detail/a_id/33426/kw/update%20address%20sublist Update: var recCustomer = nlapiLoadRecord('customer', 1, null); recCustomer.selectLineItem('addressbook', 2);…
-
Answer Id: 10480 was recently updated to reflect this - https://netsuite.custhelp.com/app/answers/detail/a_id/10480/kw/address%20sublist
-
This answer was taken from SuiteAnswers Answer Id: 31522: When trying to get field text of a multi select field with a custom button, one might run into error : SSS_NOT_YET_SUPPORTED (UE or Client Script). To avoid this error try using nlapiLookupField api instead of nlapiGetFieldText.
-
You can try something similar to SuiteAnswers Answer Id: 32713. Change the Type = Invoice and set up recipients to receive the alert.
-
I think pradeep.r.s touched on it. See SuiteAnswers Answer ID: 38260
-
Use the Advanced Editor by clicking the "A" button and hit "#" to wrap the content in between the CODE tags.
-
Hi Srivalli, can you try uploading a local file using the following method: Expand the Advanced Editor by clicking the "A" button > click the Image button > Upload tab > Choose file > hit the Send it to server button and insert the image into the post. You can also use the Upload Attachments button to insert a clickable…
-
See SuiteAnswers Answer Id: 18317 for more information on this message. 1) If Standard Online Order (External type) based forms are used as the templates and do not have any issues with webstore sales orders, ignore the warning message and proceed with the selection. 2) You can switch to Standard Sales Order (Internal…
-
SuiteAnswers Answer Id: 23350 includes a few online SSL verification tools.
-
SuiteAnswer Answer Id: 31727 shows how to create a custom field that can display values derived from summary saved search results.
-
SuiteAnswers Answer Id: 27051 includes this example: function suitelet(request, response) {[COLOR=#7F0055][SIZE=2][COLOR=#7f0055] var[/COLOR][/COLOR][/SIZE] folder = nlapiCreateRecord([SIZE=2][COLOR=#2a00ff]'folder'[/COLOR][/SIZE]);…
-
A Defect was identified with Submit buttons in the UI and the solution was to refresh the page or clear browser cache. If you still experience this issue, please contact Support and reference Defect 322282.
-
Defect 310078 was filed for this issue.
-
A couple of SuiteAnswers include the addrphone field in sample scripts, but I would check with Support for a definitive explanation. See Answer Id: 39551 and 39549.
-
Hi Linda, you may be able to accomplish this using RSS Feeds. SuiteAnswers Answer Id: 15179 provides steps to create custom RSS/Atom feeds and publish information to users in dashboard portlets.
-
Workflows can also set the custom form. i.e. change custom form based on the customer selected on a transaction. See SuiteAnswers Answer ID 28654 for an example.
-
Hi Ayman, here is the log: customerNum:306564 invdate:6/30/2014 locationNum:12 accountNum:972 itemNum:6333 classNum:140 amountTotal:1 quantityTotal:1 Nellott, i tried your method of not setting the doSourcing and it didn't work. One more thing guys, i went ahead and converted this script to a suitlet so I could better…
-
The Make Copy button is also an option in the UI when editing a customer record. Thanks,
-
If you are still interested in exporting search results to csv using script, check out the SuiteAnswers topic titled, Automatically create a CSV file out of saved search using Script. Sample Code Snippet: var results = nlapiSearchRecord('customrecord3', SEARCH_ID); var data = ''; for(x=0;x<results.length;x++) { var row =…
-
You could try using nested lists. Here's an example nested list in this thread: https://usergroup.netsuite.com/users...ht=nested+list Thanks,