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
0 answers

Netsuite:- how to extract Saved Searches & Reports data using SuiteAnalytics Connect Service (ODBC)?

As per documentation:- the SuiteAnalytics Connect Service enables you to run queries against two different data sources: NetSuite.com data source – Uses the only schema available up to 2018.2 to retrieve data. NetSuite2.com data source – Uses the…
ManiK
  • 377
  • 1
  • 21
3
votes
1 answer

NetSuite : FreeMarker/BFO Images Cutting Off at Page Break

I have a Rich Text Field inside NetSuite with multiple images. Unfortunately, the images that don't fit on the first page/same page, are NOT getting pushed down to a second page after generating the Advanced PDF. Instead, BFO just cuts-off the image…
Tennis
  • 137
  • 12
3
votes
0 answers

Password custom field type (nlapiEncrypt)

I've created a custom field password and would like to prompt a user to input their password for certain files. In Suitescript 1.0 encrypting a password is easy as nlapiEncrypt(pass, 'sha1');. But for Suitescript 2.0 the closest I could get to a…
MarthaF
  • 187
  • 2
  • 17
3
votes
2 answers

How can I update inventory item quantity by calling NetSUITE REST API using postman

I am using Postman to for using NETSUITE Rest API. I have got the token using postman and using bearer token authentication. I can see the item using the API call {{REST_SERVICES}}/record/v1/inventoryItem/610 And the response I get is: { "links":…
3
votes
0 answers

Netsuite: Add new value in custom list via REST webservice

I am new to netsuite. I am using Netsuite REST webservice to post my application data to netsuite. So far I have managed to create customer, add address and get reference to different custom fields internal Ids. One of the things I want to achieve…
Shahzad Malik
  • 541
  • 4
  • 6
3
votes
2 answers

NetSuite Add Custom Field To Price Level

I need to add fields to the price level record. The records browser states it supports them but I cannot locate which field type in the custom fields is the correct one. I have checked transaction, body, and line, item, and other but none seems to…
jk121960
  • 843
  • 14
  • 45
3
votes
3 answers

How do I connect to an external API using Suitescript?

I am trying to use Suitescript to connect to a MediaWiki API. I can't seem to find any examples specific to NetSuite. I understand the concept but I don't know what methods to use specifically. I am developing a RESTlet.
Arie White
  • 43
  • 1
  • 3
3
votes
1 answer

How to justify Arabic Text in Advanced PDF(HTML)?

i have made an Arabic printout in Advanced PDF, the text printing is not JUSTIFIED. var tb4 = '' tb4 += '' tb4 += '
' tb4 += '

4N335
  • 267
  • 2
  • 29
3
votes
3 answers

How to convert xml to JSON in suitescript 2.0

I have an XML response that i want to convert it to JSON, i'm currently usingg XPath var responseNode = xml.XPath.select({ node : xmlDocument, xpath : '//SOAP-ENV:Envelope' …
3
votes
4 answers

regex capture group help netsuite/oracle

I have played around on regex101 for a while now and can't figure this out and maybe it is because of the version of regex used in NetSuite. On regex101 using the string below it highlights the part I want as group 1, but results in nothing in…
enfrost
  • 165
  • 1
  • 14
3
votes
1 answer

Nested CASE WHEN Formula(text) in Saved Search Results in NetSuite

I have two fields _courier and _trackingnumber. I would like to create in results nested CASE WHEN formula (text) under the following conditions: the courier is = 'NAME' and if the _trackingnumber of this courier does not start with 0 then add 00…
3
votes
0 answers

Invalid Login Error with Netsuite Token based Authentication when Two factor Authentication is enabled

We were trying to implement Token Based Authentication for our existing netsuite integration and the new implementation is working as expected for netsuite accounts with two factor authentication is not enabled. From netsuite documentation we came…
samiaj
  • 421
  • 1
  • 5
  • 15
3
votes
1 answer

Getting An nlobjSearchFilter contains an invalid operator, or is not in proper syntax: internalid. when attempting to Add VendorBill

I am sending this SOAP object to the Netsuite Add API. I get this error response: An nlobjSearchFilter contains an invalid operator, or is not in proper syntax: internalid. Has anyone seen this error on an Add operation? I'm also not sure why there…
Rich
  • 112
  • 1
  • 9
3
votes
3 answers

Suitescript 2.0 ResultSet.Each Callback Function Exceeded 4000

I wrote a script (below) a couple years ago (haven't been coding since - so there is a fair amount or rust ;D) where the ResultSet now exceeds 4000 records which was not anticipated when the script was written. The error is…
Rob G
  • 140
  • 1
  • 11
3
votes
1 answer

NetSuite SS2.0 - Create a File with "addtimestamptourl" checked

Looking here for a way to set the GENERATE URL TIME STAMP field (addtimestamptourl) to checked using SS2.0 as part of rendering a PDF. Currently I have: var fPDF = renderer.renderAsPdf(); fPDF.name = fName; fPDF.addtimestamptourl = true; fPDF.folder…
Steve Reeder
  • 980
  • 16
  • 42