Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
1
vote
1 answer

Determine display columns from Saved Search via SuiteTalk / NetSuite?

I'm using Python 2.7 and Zeep to call SuiteTalk v2017_2_0, the SOAP-based NetSuite web service API. The command I'm running is search like so: from zeep import Client netsuite = Client(WSDL) TransactionSearchAdvanced = netsuite.get_type( …
Neil C. Obremski
  • 18,696
  • 24
  • 83
  • 112
1
vote
1 answer

Netsuite namespace conflict (core_2017_2.platform vs accounting_2017_2.lists)

I want to post a journal entry to Netsuite from my Python script. I am using zeep to talk to SuiteTalk. I am new to Netsuite and I am new to SOAP. Following on internet examples, I managed to add a test customer via Python script using the below…
Vikas Prasad
  • 3,163
  • 5
  • 28
  • 39
1
vote
4 answers

NetSuite Advanced PDF/HTML - Displaying images with URL from custom field

I am trying to create an Advanced PDF/HTML template that will display an image using a URL that is in a custom field. The custom field is a hyperlink and the field ID is {custitem_dp_image1}. I am using the image tag and referencing the…
1
vote
1 answer

To know when login timeout

I nee to connect to web service to perform transaction. For this purpose I'm using class NetSuiteService:System.Web.Services.Protocols.SoapHttpClientProtocol. In order to get service I need to login. I would like not to create web service and do…
vico
  • 17,051
  • 45
  • 159
  • 315
1
vote
1 answer

Transform sales order to invoice error

I'm having an error when I try to transform a newly created sales order to an invoice. Here's my code: define(["N/log", "N/email", "N/record"], function(log, email, record) { function afterSubmit(scriptContext) { var newOrderId =…
mana
  • 1,075
  • 1
  • 24
  • 43
1
vote
2 answers

afterSubmit function is not trigger when the order is placed through webservice API

I have my suitescript to run when a new sales order is created. It's working fine when I login to netsuite and manually create a sales order. I know my script is working when I received a test email from my suitescript code. However, when the…
mana
  • 1,075
  • 1
  • 24
  • 43
1
vote
1 answer

How to get newly created sales order internal id in suitescript 2.0?

I'm writing a suitescript to send order details to a customer email address. Is it possible to get the sales order id through scriptContext or similar method? My function is run on Sales Order After Submit. function afterSubmit(scriptContext){ …
mana
  • 1,075
  • 1
  • 24
  • 43
1
vote
1 answer

How to auto generate invoice from sales order in suitescript 2.0?

I've researching online on how to generate an invoice from a sales order through suitescript 2.0 but without any luck. Could anyone shed a light on how to do this please. Here's my situation: Order is placed through API SOAP and I want to…
mana
  • 1,075
  • 1
  • 24
  • 43
1
vote
1 answer

Add an Item Group to Sales Order in Netsuite using SuiteTalk and PHP

I am trying to add Sales Orders with items of type "Item Group" using SuiteTalk via the PHP Toolkit. When the item is of other types, e.g. "Inventory Item, Non-Inventory Item", the orders is added without problems. When the item is of type "Item…
1
vote
2 answers

Update NetSuite Item Fulfillment Record with Tracking

Need help adding "packages" to Item Fulfillment records to allow CSRs to see which items were shipped out under which tracking numbers. I can instantiate an ItemFulfillment record and an ItemFulfillmentPackageList object but the…
dubtime
  • 11
  • 4
1
vote
1 answer

NetSuite SuiteTalk - Retrieve Value String From “SearchColumnSelectField”

Say you are trying to access a value from SuiteTalk that is returned as type "SearchColumnSelectField": ((TransactionSearchRow)row).basic.postingPeriod?[0].searchValue.name Note: I use postingPeriod as example, but there are many other records that…
David Rogers
  • 2,601
  • 4
  • 39
  • 84
1
vote
2 answers

NetSuite SuiteTalk - Retrieve Value String From "SearchColumnSelectCustomField"

I have a small application that iterates over the results of a "Saved Search" retrieving the values from several Custom Columns(simplified example): var results = searchResults.Select(a => new { X =…
David Rogers
  • 2,601
  • 4
  • 39
  • 84
1
vote
2 answers

NetSuite SuiteTalk TransactionSearchAdvanced: recordList equals null

I have a small C# console application who's sole purpose is to receive records from a "Saved Search" in NetSuite(via SuiteTalk). I've been able to successfully connect and receive records from NetSuite for my Saved Search(the search runs fine…
David Rogers
  • 2,601
  • 4
  • 39
  • 84
1
vote
0 answers

NetSuite SuiteTalk Joined Search on Custom Objects

I have two custom objects. The parent object is an Order, and it has a list of type Part associated with it. I'm trying to get the list of Parts with a value "Inventory Item" in one field, but only for a particular Order. I have the name and…
FirstDivision
  • 1,340
  • 3
  • 17
  • 37
1
vote
2 answers

How to get Vendor object with Suitetalk Java API

How to get Vendor List objects using suitetalk java API. I tried for one Vendor object String internalId = _console.readLn(); // Invoke the get() operation to retrieve the record RecordRef recordRef = new RecordRef(); …
Ashwin Jayarama
  • 261
  • 1
  • 6
  • 14