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

Netsuite Suitescript API - Searching Transaction records returns duplicates

I am attempting a basic search query of the 'transaction' records (I have also attempted this with 'salesorder' with similar results). The query has no filters, and requests only the internalid as a search column, but for some reason the results…
Chris Barcroft
  • 562
  • 5
  • 12
4
votes
0 answers

NetSuite - get/update custom record type with php toolkit

I have a custom Record Type which has a 3 fields. 1 field is a List type and the parent is transaction. How can I search for these custom record type data from the php toolkit? I need to search the custom data by the PO number. Thanks in advance
masterFly
  • 1,072
  • 12
  • 24
4
votes
3 answers

How to set NetSuite system date in the future or past for testing?

Is it possible to temporarily change the system date in NetSuite for purposes of testing date triggered scripts? If not is there a way to overload all NetSuite date functions so that a future or past date could be simulated for a given user in the…
Rich Bianco
  • 4,141
  • 3
  • 29
  • 48
4
votes
1 answer

How can I create custom records with suitescript in netsuite?

var recExpense = nlapiCreateRecord("customrecord_expense"); recExpense.setFieldValue(1028,"3223");//employee number nlapiSubmitRecord(recExpense); I just wrote that simple code to create a new custom record but after the execution just a blank…
Arif Karadag
  • 129
  • 1
  • 2
  • 8
4
votes
4 answers

Netsuite SuiteTalk - requesting list of invoices for a customer via PHP

I'm using the Netsuite PHP Toolkit to try to obtain a list of invoices for a customer. I can do the call (using a TransactionSearch) with no problem, but I'm struggling to understand how I'm supposed to get all details for an invoice - i.e. the…
El Presidente
  • 43
  • 1
  • 6
4
votes
3 answers

Accessing NetSuite data with Python

Using Python, I would like to pull data from NetSuite, along with adding/updating data in NetSuite. For example, I would like to create sales orders and add line items via Python. I'm aware that they have a WSDL that I could potentially use. (And I…
jonsustar
  • 203
  • 4
  • 9
4
votes
1 answer

Netsuite nlapiSearchRecord Expression filters not working

Running into an issue with the nlapiSearchRecord() I can apply the nlobjSearchFilter() object to the searchRecord but I need an OR option and it seems that the only thing the searchFilter passes is AND. I saw this post "NetSuite And/Or Filter" which…
Sidious
  • 87
  • 1
  • 6
4
votes
2 answers

INVALID_LOGIN_CREDENTIALS error on NetSuite, but correct credentials

I've been trying to use the NetSuite api for sometime using the netsuite gem. I can login to the website, but when I try to authenticate from the API I get an INVALID_LOGIN_CREDENTIALS error. This is the payload of the request:
Bruno Buccolo
  • 1,111
  • 9
  • 20
4
votes
7 answers

Netsuite - how to specify record_type for getall request

I want to get a list of all InventoryItems According to this document: https://system.netsuite.com/help/helpcenter/en_US/Output/Help/SuiteCloudCustomizationScriptingWebServices/SuiteTalkWebServices/getAll.html I'm forming the following…
user1932315
4
votes
2 answers

Get list of objects and its fields in Netsuite

Is there a way to get list of all record types - both standard and custom (employee, lead, customer etc.) and their fields using APIs (SOAP or REST) in Netsuite?
user2739843
  • 67
  • 1
  • 2
  • 6
4
votes
0 answers

NetSuite Web services hang / timeout from .NET 64 bit App

We have noticed that with the 2012 NetSuite Web services (and perhaps all other versions), when we make a call from a .NET 2.0 64-bit application, if the response does not come back quickly, then intermittently our application will hang however in…
RobWX
  • 41
  • 2
4
votes
2 answers

add an item to a sales order in Netsuite suitescript

I'm trying to figure out the code behind looking at a new Sales Order that has an item called "Repair" and add a second item called "Repair Cost" before User submit. I'm a bit lost and I welcome any help that can be given. I would like this script…
Randomlord
  • 51
  • 1
  • 1
  • 3
4
votes
3 answers

How go I get csv data into netsuite?

I've got an update to my question. What I really wanted to know was this: How do I get csv data into netsuite? Well, it seems I use the csv import tool to create a mapping and use this call to import the csv nlapiSubmitCSVImport(nlobjCSVImport). Now…
ericzombie
  • 41
  • 1
  • 3
4
votes
5 answers

NetSuite: How to close a Sales Order using Suite Script?

I am trying to close a Sales Order using Suite Script in NetSuite. I noticed that records which are already closed have their 'status' set to 'Closed'. I tried setting this field before submitting the record but this doesn't work and the record…
Faraz
  • 57
  • 1
  • 5
4
votes
1 answer

How to create NetSuite SuiteTalk search with multiple terms?

How does one create a SuiteTalk (NetSuite web api) search query specifying multiple search terms indicating a logical OR operator? For example, I want to retrieve TimeBill records whose create OR last modified dates are within a particular range.…
Douglas Wiley
  • 483
  • 1
  • 7
  • 10