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
4
votes
1 answer

Including Inventory Number in global search

I actually can't find any option how can i add this Inventory Number entries (subtab on item records) in global search. It would save me a lot of time if this field can be searchable under global netsuite's search which is located in header of every…
Aleksandar Đokić
  • 2,118
  • 17
  • 35
4
votes
2 answers

NetSuite SuiteTalk ReturnAuthorization

I am trying to create a Return Authorization from a Sales Order but can not determine the required parameters. I keep receiving an error of: You must enter at least one line item for this transaction. If I attempt to include the id of one of the…
user346443
  • 4,672
  • 15
  • 57
  • 80
4
votes
1 answer

Python - Create/Read/Update/Delete records in NetSuite

I was wondering how to Create/Read/Update/Delete records and their standard/custom fields, using python SOAP with NS WSDL
bogus
  • 457
  • 5
  • 16
4
votes
1 answer

How can I attach a support case to a sales order?

I have written a script that automatically and dynamically creates a sales order when a case is created with certain conditions. In the afterSubmit() method of my user event script, I attempt to attach the support case to the sales order using the…
devninja
  • 43
  • 3
4
votes
2 answers

How to upload a file from local to NetSuite file cabinet using SuiteScript 2.0

How can I upload my files to NetSuite file cabinet using SuiteScript 2.0?
amit biswas
  • 75
  • 1
  • 3
  • 7
4
votes
1 answer

Is it possible to read a report in a netsuite restlet script?

We are using suitscript 2.0. We would like to read a custom report from netsuite periodically and persist the data into a third party system. It seems that neither the search module nor the record module can load/read reports data. Is it possible to…
Vlad Nicula
  • 3,577
  • 6
  • 32
  • 50
4
votes
2 answers

Saved Search of Saved Searches with Email Subject and Body in results tab

I'm trying to create saved search of saved searches in order to see which saved search is sending which e-mail. Now once i have like 100 auto e-mails from saved searches in netsuite i would like to organize them. For example i would like to have all…
Aleksandar Đokić
  • 2,118
  • 17
  • 35
4
votes
1 answer

Spring Data, multiple datasources, Not a Managed Type exception

I've been trying to get multiple database systems working within the same spring boot project for longer than it should take. I keep running into the following exception and need to have more eyes to nudge me towards the fix. I apologize for the…
Robert H
  • 11,520
  • 18
  • 68
  • 110
4
votes
2 answers

How do I create a folder in the file cabinet in SuiteScript 2

How do I create a new folder in SuiteScript 2.0 and save it to the file cabinet? var folder = record.create({ type: record.Type.FOLDER, }); folder.save() What am I missing?
Morris S
  • 2,337
  • 25
  • 30
4
votes
3 answers

Converting a date to a string - SuiteScript 2.0

Goal: Convert JS Date Object to a String representation in the format of "11/2/2017" in a NetSuite SuiteScript 2.0 scheduled script. I have a date object that I need to use for 2 purposes. In one, I am going to use it for comparisons (so I want the…
TMann
  • 751
  • 2
  • 11
  • 33
4
votes
3 answers

NetSuite sandbox suitetalk access

I am having trouble accessing the Sandbox environment through the Suitetalk web services. I am using the 2016_2 WSDL. I have tried making use of the newest version WSDL, but this did not help. I am using this on an existing test application, which…
Charl
  • 812
  • 1
  • 8
  • 22
4
votes
1 answer

SuiteScript 2.0 attach email to multiple transactions

I'm using the N/email module to send an email that I'd like to attach to multiple transactions. With a single transaction using the following code, I have no issues: email.send({ author: -5, recipients: recipient, subject: subject, …
Nathan
  • 390
  • 1
  • 2
  • 10
4
votes
2 answers

NetSuite restlet write performance is poor

Edit: I've redacted actual numbers and replaced them with pseudoswears because I've been told sharing performance data is against Netsuite's TOS. I'm integrating our accounting system with NetSuite using restlets, and overall it has gone pretty well…
Powercow
  • 61
  • 4
4
votes
5 answers

NetSuite SuiteScript 2.0 disable field based on checkbox

I apologize if this is a dumb question, but I am new to NetSuite, and have noticed that their documentation is absolutely ridiculously horrifyingly and atrociously disgusting. All humor and bitterness aside though, I can't find the details that…
Godrules500
  • 467
  • 6
  • 25
4
votes
1 answer

NetSuite / Suitescript - Why does this Validate Field script enter an infinite loop?

My script is entering into an infinite loop and I have no idea why. I am running this on validate field and I am preventing a change to the field if another vendor bill exists with the same reference number, forcing the user to change the "Reference…
bluejay92
  • 161
  • 6
  • 21