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

Duplicate results in NetSuite saved search

I created a simple saved search in NetSuite on the Transaction object, but for some reason I'm seeing duplicate results being returned. Screenshot below shows the duplicate results for the same Transaction record. Can anyone help me understand why…
Marty C.
  • 576
  • 2
  • 7
  • 22
3
votes
2 answers

SuiteScript 2.0 : Retrieve the values of the parameters passed from the sales order into the suitelet using the getParameter

I am new to Suitelet. My object is to redirect from Sales Order to Form Suitelet. I create a file.js to redirect from a userevent script to a suitelet. function afterSubmit(scriptContext) { if (scriptContext.type != 'delete') { var…
spring_flower
  • 71
  • 1
  • 1
  • 9
3
votes
3 answers

Authorization issue in netsuite using oauth

I am working on Netsuite and I'm new to it, so I need help. After creating roles and assigning a user to that specific role, I want to assign them to an application created using the integration record. When I wanted to create an access token, after…
3
votes
1 answer

In NetSuite with SuiteScript 2.0 unable to send a file with HTTP POST request with a content-type multipart/form-data

I am not able to send my "multipart/form-data' file to this API. If I use POSTMAN it's working but with the https post method it seems that netsuite doesn't recognize the "form-data" content-type. Somebody knows how to send a form-data with…
hesiode
  • 33
  • 1
  • 6
3
votes
2 answers

Netsuite Internal URL content call

I am writing a script and wanted to read the content from the URL request. header['Content-Type']='text/xml'; var apiURL='https://system.na2.netsuite.com/app/setup/upload/csv/csvstatus.nl?XML=T'; var response=https.get({ url:apiURL, …
Arindam
  • 675
  • 8
  • 15
3
votes
2 answers

NetSuite Error: CustomFieldRef is an abstract type and cannot be instantiated

I am working on NetSuite WSDL. I am stuck on this error from past two days. I have searched on the internet but couldn't find a solution. I try to add a custom field in NetSuite using Python but I am getting the error zeep.exceptions.Fault:…
Utkarsh Sharma
  • 323
  • 4
  • 14
3
votes
1 answer

In NetSuite, How Do I Print Related Records in Advanced PDF/HTML Template

I created one Invoice in NetSuite. I also accepted a PAYMENT and applied a CREDIT on the Invoice I created. Does anyone know how to print out the related records, which is a "list" type and contains the payment/credit information? Here is the part…
RhysJ
  • 153
  • 1
  • 3
  • 19
3
votes
1 answer

Suitescript print out object content

For debugging purposes, I want to see what's inside an object variable. How can I print out an object content in Suitescript.
mana
  • 1,075
  • 1
  • 24
  • 43
3
votes
2 answers

N/currentRecord module does not exist when uploading User Event script to NetSuite (SuiteScript 2.0)

I am trying to upload the below script to NetSuite in order to do a currency conversion from the purchase order currency to USD. I would like a custom field to be updated with the USD amount whenever a user keys in any items into a purchase…
NS User
  • 43
  • 1
  • 5
3
votes
2 answers

How to access the search LookupFields result

Below is my search code. I'm searching for the Invoice number by using the invoice internal ID. What is the right way to access the lookupFields search result? var invoiceNumber = fieldLookUp.value; I'm using the above line but the…
mana
  • 1,075
  • 1
  • 24
  • 43
3
votes
1 answer

SuiteScript 2.0 Two actions on submit button

I need add two action into submit button, I succeed on that but because I can't find correct function from API, there is two buttons. Like this I want it like this: What I have tried form.addSubmitButton({ label: 'Action…
Evus
  • 400
  • 4
  • 12
3
votes
1 answer

How to call Sales force Rest API from Schedule script in suitescript

I'm doing Salesforce-Netsuite Integration.I need to call Sales force Rest API in schedule script.How to do this? Can anyone help me?
Revathi
  • 41
  • 4
3
votes
1 answer

Search NetSuite Custom Record Type in PHP

I have a Custom Record Type and I am having trouble searching the barcode from the item value: I am using the NetSuite PHPToolkit_2015_2 and this stackoverflow answer https://stackoverflow.com/a/13366947/2120512 and…
imparante
  • 503
  • 9
  • 21
3
votes
1 answer

NetSuite browser performance

I'm helping someone work with NetSuite, and the client-side performance is not very good for functions that have a lot of client-side data. We're currently using Chrome Version 58, but have also tried Firefox. The NetSuite browser client code is…
3
votes
2 answers

How to pass Parameter NetSuite RESTLet using Advanced REST client

How to pass Parameter NetSuite RESTLet using Advanced REST client. I Cant get parameter value. function getRecord(datain) { nlapiLogExecution('DEBUG','recordtype='+datain.recordtype); nlapiLogExecution('DEBUG','id='+datain.id); var…
Wenson
  • 235
  • 4
  • 17