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

Enable content assist eclipse for Netsuite

How can I enable autocomplete / content-assist (ctrl+space) in Eclipse for Netsuite? If I create with java content assist work correctly, but if I open and create for Netsuite project content assist doesn't work correctly. Any one can help? Thanks
Empep
  • 41
  • 1
  • 2
4
votes
1 answer

NetSuite - not able to reference images from folder

My Code: function combineExpenseFiles(type){ try{ var currentRecordId = nlapiGetRecordId(); var currentRecord = nlapiLoadRecord('expensereport',currentRecordId); var expensesLineItemCount =…
Deepak Garg
  • 142
  • 8
4
votes
5 answers

How to show the custom error message without stack trace using suitescript 2.0 in netsuite

I want to show the custom error message with out stack trace to user using "suitescript 2.0"version. In workflow the custom error message is showing without stack trace but in Suite Script the "ERROR MESSAGE " is showing with the stack trace. ERROR…
Deepan Murugan
  • 721
  • 2
  • 19
  • 41
4
votes
2 answers

Update LD_LIBRARY_PATH system wide for ODBC connection via PHP7.0-FPM

I am trying to connect to NetSuite over ODBC from an Ubuntu Linux machine. I've got everything setup. It works via the shell, and PHP command line. But when I try and make this connection via a web request to PHP, it fails with this error: Warning:…
Nathan
  • 2,941
  • 6
  • 49
  • 80
4
votes
1 answer

How to show the custom PDF template while clicking the button

I want to show the PDF Template in new window while clicking the button in Sales Order. I created the button in sales order process using user event script. after that i'm unable to proceed it. It is possible to show the custom PDF template in new…
Deepan Murugan
  • 721
  • 2
  • 19
  • 41
4
votes
3 answers

NetSuite Integration - Problems with CustomFieldList

I'm trying to create an integration with NetSuite through its WebService platform (SuiteTalk), but i'm having problems while saving a Customer with a CustomField. Here's my code: StringCustomFieldRef customField = new…
blui
  • 71
  • 1
  • 3
4
votes
1 answer

Create a custom library module in SuitScript 2.0?

I am trying to create a custom profiler library to load into my SuiteScript 2.0 scripts. Its path is /SuiteScripts/profiler.js and my Suitelet is in /SuiteScripts/suitelet.js Here how I am trying to load it into my…
4
votes
2 answers

Trying to get NetSuite Country list with enumeration value linked to code and name

I am implementing a integration with NetSuite in C#. In the external system I need to populate a list of countries that will match NetSuite's country list. The NetSuite Web Service provides an enumeration call Country public enum Country { …
Andrew Hawes
  • 386
  • 1
  • 5
  • 17
4
votes
2 answers

How to set an address on customer using SuiteScript 2.0

I'm trying to set an address on a customer record. I've grasped that the address is a subrecord of a customer sublist and I believe I'm able to set fields on said subrecord, but I'm unable to get the changes to save. How can one set address…
John Lucas
  • 588
  • 5
  • 20
4
votes
1 answer

How do I get a record type using nlapiLoadRecord?

I tried to get an item's type like inventory or non inventory using nlapiSearchRecord and nlapiLoadRecord function. Here is a code snippet: var searchresults = nlapiSearchRecord( 'item', search_id, null, [ new…
Jin
  • 924
  • 1
  • 9
  • 34
4
votes
1 answer

SuiteCloud IDE Validator Ignore List

In the SuiteCloud Eclipse IDE for NetSuite, what is the Ignore List setting under Preferences > NetSuite > Validation? Is it a single file that behaves like, say, a .gitignore? Or is it an explicit list of files to ignore? I suspect this setting is…
erictgrubaugh
  • 8,519
  • 1
  • 20
  • 28
4
votes
4 answers

Script Execution Instruction Count Exceeded error in Netsuite

I have a schedule script which does some calculation and update custom header field on a Sales Orders, which runs every 30 mins. With the increase number of order's in Netsuite, I started receiving error saying "An unexpected error has…
Vijay Joshi
  • 90
  • 1
  • 6
4
votes
1 answer

NetSuite add customer address

I have seen the other examples here on StackOverflow but neither are working for me, my code creates an address line in NetSuite but the addr1, city, state and zip are empty, the default billing and shipping do show false or if I set it to true it…
Chad Smith
  • 177
  • 10
4
votes
1 answer

NetSuite Custom Record Search Convert Results into List of .NET Objects

The only way I've been able to do it is through the reflection-based code below. I can't believe there's not an "easier NetSuite way" to do this though? Am I missing something basic? After I perform a search on custom objects I get back an array…
FirstDivision
  • 1,340
  • 3
  • 17
  • 37
4
votes
2 answers

Spacing between characters inside of HTML tag - why does it become stretched out?

I am working with an HTML table that is misbehaving when it comes to semi-long lengths of text. The picture below is worth 1000 words. In the first cell shown, the text "Embroidered Lettering Only" becomes stretched out as far as 'between character…
dah97765
  • 679
  • 1
  • 13
  • 29