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
5
votes
3 answers

Netsuite operation limitation

I have read from the documentation for the netsuite api that there's a limit on operations. The Add operation has a limit of only 400 operations even when not peak hours. I have googled it, but I couldn't find a way to increase the operation limit.…
Faisal Ahsan
  • 928
  • 1
  • 12
  • 22
5
votes
9 answers

How to set date/time field in netsuite with suitescript

var curRate = nlapiCreateRecord("customrecord_currency_exchange_rates",{recordmode: 'dynamic'}); serverDt = "09/25/2013 06:00:01 am" var timezone = compConf.getFieldText('timezone'); …
Arif Karadag
  • 129
  • 1
  • 2
  • 8
5
votes
3 answers

How to get over 1000 records from a SuiteScript Saved Search?

Below is code I came up with to run a Saved Search in NetSuite using SuiteScript, create a CSV with the Saved Search results and then email the CSV. The trouble is, the results are limited to 1000 records. I've researched this issue and it appears…
Accounting
  • 134
  • 1
  • 8
5
votes
2 answers

How to get difference between two dates in netsuite?

I m new to netsuite ,i have to find difference between two dates in netsuite. How can i get the difference of two dates in netsuite through scripts.help me,Thanks.
user3585325
  • 79
  • 1
  • 2
  • 5
5
votes
6 answers

Does netsuite have REST ful API?

I want to know does Netsuite provides REST ful api? Currently i am doing integration with my application(java) with soap based web services.i have done some research but didn't get useful information.IF it does where can i found api?
RvN
  • 133
  • 2
  • 5
  • 15
5
votes
5 answers

Unable to find a matching line for sublist apply with key:

We are seeing failure to Netsuite while updating payments via the netsuite API, the error message we see is as below Unable to find a matching line for sublist apply with key: [doc,line] and value: [123344,null] where 123344 is the external id of…
Moin Y
  • 61
  • 1
  • 5
5
votes
3 answers

Get all Record types from NetSuite

How to get all the supported record types in NetSuite using SuiteTalk? Description: I need a list of all the record types(Objects)supported in a netsuite account. I am trying to integrate netsuite and another tool using java. The operations…
5
votes
4 answers

NetSuite And/Or Filter

I am trying to create a report in NetSuite. I want to filter out certain data in regards to one parameter, then I want to filter in data by using another parameter. Is there an AND/OR filter in NetSuite?
user3286031
  • 51
  • 1
  • 2
5
votes
2 answers

How to list shipping methods on NetSuite?

I'm trying to list Ship Items (UPS, FedEx, etc..) via API. As it shows in Accounting > Shipping Items > List. The documentation for the ItemFulfillment Record suggests that I use the operation GetSelectValue to list the shipMethod possible values…
Bruno Buccolo
  • 1,111
  • 9
  • 20
5
votes
2 answers

NetSuite Selecting a value in a Custom List for a SelectCustomFieldRef in C# using web-services

Struggling for hours on this. How do you reference a SelectCustomFieldRef and select a value using the string from the drop down box? We have a Custom Field that is a Single Select. The Custom Field implements a custom List. The only information we…
cepatt
  • 726
  • 11
  • 23
5
votes
2 answers

Triggering external API from netsuite

I am new to NetSuite and I need to integrate it with a 3-rd party system. Each time a new sales order is created, I need to pass its details to the 3-rd party. Is there any way in NetSuite to call some external API on transaction creation? There…
Daniil Petrov
  • 166
  • 2
  • 12
5
votes
2 answers

How do I search records by internal id in Netsuite's Suitescript?

I am trying to implement a search by Category of Inventory Items in Netsuite using their Suitescript API. The following code works as expected so I know I have successful remote communication. But I am stumped as to how to go about searching by…
Adrian Bartholomew
  • 2,506
  • 6
  • 29
  • 37
4
votes
1 answer

PHP SoapClient Constructor extremely slow

I'm trying to do some tests on a SOAP API and am experiencing extremely slow execution times. I've done some digging and found that it's the SoapClient constructor that takes forever to execute. I also tried using a proxy for it to see if it's the…
Naatan
  • 3,424
  • 4
  • 32
  • 51
4
votes
1 answer

Code Assist Doesn't Work for Aptana Ver 3 Plug-in to Eclipse Ver 3

UPDATE ON 9/5/2011: PROBLEM SOLVED -- See details at bottom I am having trouble with Code Assist in Aptana Ver 3.0.4. plugin to Eclipse 3.7.0. I have installed the NetSuite plug-in but I do NOT get any suggestions/proposals for code when I press…
JMichael
  • 71
  • 1
  • 5
4
votes
0 answers

Netsuite: Workflow action script

The following script is executed after clicking a button on sales order. It creates work orders for items on the sales order if some conditions are fulfilled. It works fine, but sometimes it stops working and I need to undeploy and deploy the script…
JeppePeppe
  • 51
  • 4