-
Custom Entry (Entity Record) Form Background Change
We have a case where we want to 'highlight' certain entities to all users and all roles. We have created a Custom form which mirrored the Standard Customer Form. No other changes have been applied. We created a Single Workflow that states Before record Load if Category = Code Blue Custom Form = Code Blue (The mirrored…
-
login NS from external by java
I am trying to login NS by java with the foundation of the sample application provided by netsuite. (Sample address: http://www.netsuite.com/download/NSJavaClient2017-2.zip) . But got "Two-Factor Authentication required" exception. Code as follows, can anybody give me some ideas ? try { WsClient client =…
-
How can I get a Customer list by a list of a Custom String Field?
Hi, I have a list of ids(each id is a StringCustomField) and I want to iterate through those ids and fetch a list of customers. But It does not work. In the response, I get only 1 customer. This is the way I search : CustomerSearchBasic customSearch = new CustomerSearchBasic(); SearchCustomFieldList custFieldList = new…
-
"Too many parameters" when trying to build ERP java example
When trying to build the ERP example that I downloaded from Netsuite I am getting this error. How do I resolve this? compile.proxy: [echo] Compiling proxy java sources... [mkdir] Created dir: C:\cygwin\home\rhoran\NSJavaClientERP2016-2\build.gener ated [javac] C:\cygwin\home\rhoran\NSJavaClientERP2016-2\bin\build.xml:144:…
-
Customers vs Employees.
I'm currently new to using Suitetalk, but have a solid background as a Java developer. My end goal is to get the sales data for every employee at my company. I've been playing with the sample project from the netsuite site, but the syntax isn't making sense to me. To create a new Customer, the example code gives the…
-
Searching for a ListOrRecordRef
I am hitting a wall with trying to figure out how to create a search for a `ListOrRecordRef`. My initial search returns customers; one of the attributes of the customer that is necessary for this is finding their 'industry' value, which is contained in the custom field list of the customer object. I am able to iterate…
-
Custom SearchDate
Is it possible to create custom SearchDate objects for creating search requests using Java? I am trying to query for customers whose last modified date is on a specific date in the past. I am able to search using the predefined values ('lastWeek', 'twoDaysAgo', etc.), but I cannot figure out how to create a custom…