NetSuite's SOAP-based web services API
Questions tagged [suitetalk]
174 questions
3
votes
1 answer
Search NetSuite Custom Record Type in PHP
I have a Custom Record Type and I am having trouble searching the barcode from the item value:
I am using the NetSuite PHPToolkit_2015_2 and this stackoverflow answer https://stackoverflow.com/a/13366947/2120512 and…

imparante
- 503
- 9
- 21
3
votes
2 answers
How to Add New Custom record Item in netsuite using webservices?
I have created a new custom record called "XYZ" and i created all the fields into it.
Now i can add new entry on that Custom record using GUI but how do i do similar action using webservices.
What methods needs to be summoned to add new item in…

octopus
- 155
- 3
- 13
3
votes
1 answer
Netsuite get value of custom field Java
I have a SalesOrder object that I casted from a ReadResponse like this:
SalesOrder salesOrder = ((SalesOrder) response.getRecord());
How can I access the value of customfields within the individual line items attached to the SalesOrder object?
I…

PoorBob
- 413
- 4
- 16
3
votes
2 answers
Getting Fields Values as Null from Saved Search in Netsuite
I created a saved search in Netsuite. I'm trying to get the field values through the web services call from my application. I am getting total records size correctly, but while trying to get the fields values I'm getting null for all fields(example,…

veera
- 317
- 2
- 3
- 14
3
votes
2 answers
NetSuite Transaction Search Returned Without Any Line Items for Invoice
I am attempting to import an invoice from NetSuite into my program. In this program, I need as much information about the invoice as possible to be returned. However it does not appear that any of the line item information is being returned. Here…

cepatt
- 726
- 11
- 23
2
votes
0 answers
Creating invoices in bulk using NetSuite REST API
Is there a way to create multiple invoices with a single POST request to the NetSuite REST API?
The API Reference doesn't mention anything - but I'm hoping there's a way to avoid sending thousands of individual requests.
I am creating a single…

Gian Paolo Buffo
- 381
- 4
- 19
2
votes
1 answer
How do I search for NetSuite inventory items using a custom field?
Using NetSuite 2020.1 web service, I would like to search for an inventory item by it's name and catalog code (custom field).
Here is a screen shot of the search behavior I'm trying to replicate through code:
And here is where I'm at code…

littlegreendude
- 117
- 1
- 10
2
votes
0 answers
How to retrieve translations of CustomList items in NetSuite using SuiteTalk?
I have a custom list in NetSuite containing values in English. Each item in the list is also translated in French.
I am able to retrieve the list items using the following code in Java with the SuiteTalk SOAP client:
RecordRef recordRef = new…

Teddy Brielle
- 21
- 1
2
votes
1 answer
Requesting Sales Order Data from Netsuite Web Service (Suitetalk)
I want to extract Sales Orders from my netsuite instance. To test this I use postman. When using the Netsuite REST API Tutorial Environment with the url:
{{proto}}://{{host}}/rest/platform/{{version}}/record/salesorder
(postman fills the variables…

Markante Makrele
- 98
- 1
- 8
2
votes
2 answers
Netsuite search select custom field
I am developing an app based on netsuite suitetalk api for webservices, specifically for search. I am able to search for custom multiselectfield using the soap api. Multiselect internalId is 16. Sample below

Sandeep Deshpande
- 19
- 5
2
votes
1 answer
Escape Reserved Keywords Python
I am using ZEEP to connect to NetSuite. One of the parameters that I need to pass to NS when creating the invoice is 'class'. If I understand correctly, the reason the following line does not compile is because 'class' is a reserved keyword.
invoice…

tkansara
- 534
- 1
- 4
- 21
2
votes
0 answers
How to create invoice in netsuite using suitetalk?
Thanks for reading this topic, i would appreciate if someone from netsuite can share with me solution of below issue.
I am creating invoice in netsuite web portal with the customer that doesn't have credit limit, i have added inventory item and then…

MUHAMMAD MUBUSHER ASLAM
- 299
- 2
- 21
2
votes
3 answers
SuiteTalk Advanced Search Examples
I've only worked with NetSuite and SuiteTalk for less than one year. I've found examples of basic searches and advanced searches that leverage saved searches, but I had a hard time finding examples of how to perform an advanced search from scratch…

Kevin M
- 189
- 2
- 10
2
votes
2 answers
Unable to find a matching line for sublist item with key: [orderLine] and value: [1]
I am using SuiteTalk to create an item fulfillment from an existing sales order. This works for non-serialized orders, but not for serialized SOs.
I get the following error:
Unable to find a matching line for sublist item with key: [orderLine] and…

Charl
- 812
- 1
- 8
- 22
2
votes
1 answer
Transform sales order into Fulfillment
Here's the code I use to transform the sales order to fulfillment. It doesn't seems to work.
var objRecord = record.transform({
fromType: record.Type.SALES_ORDER,
fromId: newOrder.id,
toType:…

mana
- 1,075
- 1
- 24
- 43