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

Sending Order Details From WooCommerce To External System Over API

I am trying to send woocommerce order to netsuite via an external api I have written. I am nw to woocommerce and do not fully get how to add this functionality. I have added the following code to the functions.php file in…
Tom Hanson
  • 873
  • 10
  • 39
6
votes
3 answers

NetSuite SuiteScript 2.0 Cannot programmatically enter Inventory Details sublist subrecord for partially created current record

I am trying to create the Inventory Details fields programmatically (automatically) via SuiteScript 2.0 in a Client Script using the code below. The item line on the Inventory Adjustment form would be partially entered (up to the Adjust Qty By…
Superdooperhero
  • 7,584
  • 19
  • 83
  • 138
6
votes
3 answers

Netsuite OAuth Not Working

I've tried implementing Netsuite's OAuth Example, as illustrated here: https://netsuite.custhelp.com/app/answers/detail/a_id/42165. I've posted it directly below so you don't have to go to the page if you don't want. Unfortunately, it's not…
M. Pope
  • 411
  • 6
  • 16
6
votes
1 answer

Get Netsuite sandbox for developer

Can anybody explain me one thing? Is it possible to get free NetSuite sandbox account for the developer like in Salesforce (developer org)?
Vadym
  • 407
  • 1
  • 6
  • 15
6
votes
1 answer

What is difference between restlet,suitelet,suite talk

1)Comparing with in Restlet,suitelet and suitetalk In which scenarios we mostly preferred to use restlet, In which scenarios we mostly preferred to use suitelet, In which scenarios we mostly preferred to use suitetalk. anyone can help 2)what is…
6
votes
3 answers

Xamarin RestSharp POST method throwing request timeout error and name resolution error

I am trying to post data from Xamarin android app to Netsuite RESTlet api. Below code is working fine from asp.net web form c# using rest sharp library and also work on Postman Desktop app. But when i try to post data xamarin android app it throw…
Salman
  • 333
  • 4
  • 18
6
votes
3 answers

SuiteScript 2.0 Add filters to saved search in script

I have a custom record that has a field for an item and a field for location. I have a saved search on that record that already has the columns I want and some beginning criteria that will always be needed. I want to use this search when I am on a…
TMann
  • 751
  • 2
  • 11
  • 33
6
votes
5 answers

What is the URL for installing SuiteCloud IDE on an Eclipse device?

When I try to install the SuiteCloud IDE on an Eclipse device, I'm getting this error: Apparently this URL is incorrect. What's the correct URL? Or is there another issue?
Harish
  • 189
  • 2
  • 13
6
votes
1 answer

What is the SuiteScript 2.0 equivalent to nlapiRequestURL()?

Does anyone know the SuiteScript 2.0 equivalent? nlapiRequestURL(url, postdata, headers, httpMethod)
C.Neal
  • 319
  • 3
  • 12
6
votes
1 answer

Unable to pass authentication information to NetSuite's REST interface using Python

I've been trying to get a NetSuite Restlet to work with Python 3.3 using urllib, but I can't seem to get the authorization to take and continually return a urllib.error.HTTPError: HTTP Error 401: Authorization Required error. Where am I going wrong…
Robert H
  • 11,520
  • 18
  • 68
  • 110
6
votes
1 answer

Netsuite Formula - "blank" or "null" field

I'm trying to use a formula to get a field populated with the word "false" in NetSuite, but currently when I use this I get nothing showing up. If I modify it slightly to say "null" or "blank" or leave it as just a space, it returns an error. The…
user2793912
  • 61
  • 1
  • 1
  • 2
5
votes
3 answers

How to create journal entry in netsuite api?

I am trying to create a journal entry on NetSuite using its SuiteScript API. Here is my code. export function post() { var rec = record.create({ type: record.Type.JOURNAL_ENTRY, isDynamic: true, }); rec.setValue({ fieldId: "memo", …
Krishna Karki
  • 749
  • 12
  • 31
5
votes
2 answers

Token Based Authentication (TBA) - OAuth - Netsuite - rest web services - Invalid Login Attempt

I have been trying to perform a token based authentication (TBA) with netsuite, but keep getting "Invalid Login Attempt" I tried to refer to this also: How to request Netsuite RESTlet with TBA authentification And I tried it both…
Axil
  • 3,606
  • 10
  • 62
  • 136
5
votes
2 answers

How can I get inventory item quantity from all locations by calling NETSUITE REST API

GET .../record/v1/inventoryitem/155/locations/1 by using above api to get item quantity i got the below error "title": "Unknown (sub-)resource (i.e., sublist, sublist line, subrecord, reference, ultiselect) locations in…
Chidambaram S
  • 53
  • 1
  • 3
5
votes
2 answers

Where is the Netsuite Webservices Postman Collection?

In Netsuite's REST web services help documentation, there's a reference to a Postman collection: https://netsuite.custhelp.com/app/answers/detail/a_id/86958/kw/postman You can download the REST web services Postman environment template and…
Silas Palmer
  • 2,687
  • 1
  • 29
  • 30