Questions tagged [netsuite]

NetSuite is a vendor of business management SaaS. The platform's scope includes ERP, CRM, PSA, and Ecommerce. Primarily tailored to mid-market companies.

Netsuite is a software platform founded in 1998 that provides a number of business related services targeting mid-market companies, as well as divisions of larger enterprises. As a platform it is highly customizable through a Javascript-based API called SuiteScript.

4709 questions
3
votes
1 answer

How can I generate random code using SuiteScript

I create a new lead in NS. And go to the UE script > execution log subtab, there should be a log that contains an 8-character pseudorandom code. How can I generate random code using SuiteScript?
Core
  • 37
  • 5
3
votes
2 answers

Update employee in Netsuite with Mule ESB

How to set department in employee on netsuite with mule ESB?
3
votes
1 answer

How do I set the customer priceLevel in NetSuite to blank/null?

I've been trying to set a customer object's priceLevel in NetSuite via c# to null/blank/empty value, but NetSuite seems to ignore it when I set the priceLevel to null, or to a new RecordRef with nothing further set. When I manually set a priceLevel…
Matthew Lock
  • 13,144
  • 12
  • 92
  • 130
3
votes
2 answers

"nlapiTriggerWorkflow" is not defined - Oracle Netsuite

I tried to trigger a workflow programatically, nlapiTriggerWorkflow(recType, recId, workflowId, actionId, stateId) But I am getting, "nlapiTriggerWorkflow" is not defined both in console and in script debugger. Why do I get this error?
3
votes
1 answer

How do I connect to Oracle Netsuite using OAuth 2.0 Client Credentials Flow and JWT certificate with .net core

I am trying to use the Netsuite Rest api. Below are the steps I took. https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_162730264820.html Created a Integration Record in Netsuite Create a self signed cert: openssl req -x509…
user1424876
  • 133
  • 1
  • 7
3
votes
0 answers

Can anyone suggest a workflow maintaining Netsuite SDF with Git VCS?

We are trying to incorporate Netsuite SDF with Git. Do we have any standard process flow for this? We need to find the best practices which streamlines the below actions -> Creation & Maintaining Netsuite SDF project with multiple…
3
votes
1 answer

How to Select value By SuiteQL That I can filter Multiple Select Field

I had one simple table ItemMapping, 2 Field, one Field is single Item List Field SingleSelectField With value "A", Other for Multiple Item List Field MultiSelectField with Value ("B", "C", "D"). I Wanna get This mapping relationship By "B", I tried…
Tyrion Huang
  • 71
  • 1
  • 12
3
votes
2 answers

Is it possible to use Node.js in NetSuite/SuiteScript?

I am wondering if it is possible to reference node modules in SuiteScript. For example, I am aware that I can create a third party library in the file cabinet and reference the moment.js file. However, is it possible to do an npm install moment on…
3
votes
1 answer

Creating JWT Using SuiteScript 2.x for DocuSign API Integration

I'm updating a NetSuite integration for DocuSign to convert all scripting to SuiteScript 2.0 and update the authentication to utilize the JWT grant method, seeing as the current method looks like it will be deprecated for new applications in a…
Michael McCauley
  • 853
  • 1
  • 12
  • 37
3
votes
2 answers

How do you select line items to fulfill when transforming a netsuite sales order to fulfillment?

Trying to transform a NetSuite sales order using var fulfillment = record.transform({ fromType: record.Type.SALES_ORDER, fromId: currentRecord.id, toType: record.Type.ITEM_FULFILLMENT, isDynamic: true }); getting the error…
drewski
  • 33
  • 1
  • 3
3
votes
2 answers

NetSuite Saved Search Formula for This Week

I am trying to create a saved search that shows total orders today, yesterday, this week and this month. I am able to get all but the weekly one using date formulas. All are Formula(Numberic) fields with summary type Count. Today: CASE WHEN…
3
votes
1 answer

Fetching actual data from Netsuite rather than HATEOAS links

While fetching the data from Netsuite using REST web Services. I am getting the following data as response. Is there any way where instead of HATEOAS links, I can get the actual data? I want to dump all the data to a file and in doing so I would…
ROBCROSS
  • 31
  • 3
3
votes
6 answers

SuiteScript 2.0: How can I update the externalID through Script

I'm trying to create a script file on NetSuite using SuiteScript 2.0 to update the External Id of the classification records. For some reason, NetSuite updates all fields but externalId. I want to create this script to update the externalIds because…
3
votes
1 answer

410 Error : Gone while consuming soap services of netsuite in .net core

I am trying to consume the soap web services of netsuite in .net core 2.2. While trying to call a method provided in the reference.cs, the method throws error : : 'The remote server returned an unexpected response: (410) Gone.' Here's what I have…
Prasanna
  • 43
  • 8
3
votes
0 answers

How to search multiselect field in NetSuite REST API?

I can filter dropdown values and textbox values in NetSuite using REST API, but whenever I search through the multiselect field it returns zero data. How I can search through a multiselect field in REST API? Here is my…
Niraj Patel
  • 65
  • 14