Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
0
votes
1 answer

NetSuite SuiteTalk SOAP API: Jump on Internalid when create new department

I'm using NetSuite SOAP API to create new departments from another application. The request is treated without errors and the department is created. My problem is the new internalid incrementation jump to 100 (ex: last created department internalid…
tompasto
  • 3
  • 3
0
votes
1 answer

SuiteTalk SOAP API CustomFieldSearch in Java

I am using the Java proxies downloaded from http://content.netsuite.com/download/NSJavaClient2021-2.zip Given a CustomFieldRef (with say, InternalId "30"), how do I fetch the name of this CustomField? In short, is there a CustomFieldSearch to search…
0
votes
2 answers

SuiteTalk SOAP API TransactionSearchBasic with type journalEntry fails

I tried fetching all the journal entries in my account using the SuiteTalk SOAP API. But it fails with the message The field type's enum value is invalid for this search. The Request and Response are as follows: ====================…
0
votes
1 answer

SuiteTalk: how do I get Custom Segment list values

I can get a list of custom segments using this code: List getCustIdResult = client.getCustomizationId(GetCustomizationType.customSegment, true); if (getCustIdResult == null) return new ArrayList(); List returnedRows =…
Mike Sickler
  • 33,662
  • 21
  • 64
  • 90
0
votes
1 answer

Get list of shipping methods for a subsidiary

I'm using NetSweet/NetSuite Ruby gem for connecting to NetSuite accounts. Normally it's trivial to get list of shipping methods using get_select_value. However one NetSuite account is organized into subsidiaries, and shipping methods are assigned to…
Wojtek Kruszewski
  • 13,940
  • 6
  • 38
  • 38
0
votes
1 answer

Set inventorySubsidiary and inventoryLocation by line

I am trying to send a sales order to NetSuite where the inventoryLocation and inventorySubsidiary (line level fields) are pre-defined. You can see where I defined it on the header, where it does work but this does not do anything to the line item…
hoppiness
  • 43
  • 4
0
votes
1 answer

How to add netsuite Primary Subsidiary on customer upsert

I am using the following SOAP request to upsert a customer into NetSuite. It is retuning the following: ERROR USER_ERROR Please enter value(s) for: Primary Subsidiary I've tried to add the subsidiary field and a few others but nothing seems to be…
Dan
  • 1
0
votes
1 answer

Is it possible to create a Search in NetSuite SuiteTalk using multiple criteria?

Is it possible to create a Search in SuiteTalk using multiple criteria? I need to search for specific Location and items, using AND/OR logical operators. Something like location = 123 AND (item = 1 OR item = 2). My code so far returns the result for…
Edgar
  • 162
  • 1
  • 10
0
votes
1 answer

How to get the Record Type of a Saved Search in NetSuite

I am trying to get the results of a saved search using the PHP Toolkit. I read that in the documentation : You can then use the search() operation, along with the SearchAdvanced object to return the details of the saved search. I am trying…
J W
  • 107
  • 1
  • 10
0
votes
2 answers

NetSuite SuiteTalk Item Fulfillment Error - VALID_LINE_ITEM_REQD

Any suggestions are greatly appreciated! The sales orders can have 50-100 lines. Each SO will have multiple item fulfillments. When we create the IF through SuiteTalk, we don't know which lines are already fulfilled or which lines are partially…
bllqnn
  • 5
  • 5
0
votes
1 answer

Invalid Login Attempt-While attempting to hit an API

Hi I'm trying to fetch data from NetSuite but unable to do so because of INVALID LOGIN ATTEMPT. I tried a lot of stuff but noting happened interestingly in my POSTMAN everything is working perfectly. And Following are the some documents out of…
Adam Strauss
  • 1,889
  • 2
  • 15
  • 45
0
votes
2 answers

Associate invoice to a Sales Order

I am not able to set "Created From" on Invoice to reference a Sales Order record through the SOAP web service. I have tried setting this field directly and also through Initialize API (initializing a invoice record using the sales order and then…
Vinay
  • 1
0
votes
1 answer

sample Soap Message that calls a SavedSearch by the ID

I was wondering if someone has an example using SuiteTalk, i was searching but could not find any examples.
Paxa
  • 5
  • 1
0
votes
2 answers

Error while accessing resource: Please enter values for sector

I would like to know how to create the correct body for creating a customer record. I am using the Postman examples that I downloaded from Netsuite and I'm accessing /record/v1/customer as POST, but I keep getting this Sector and Subsidiary error.…
rnldpbln
  • 654
  • 3
  • 11
  • 22
0
votes
1 answer

Netsuite webservices: search transactions by vendor internal id

I am trying to search for transactions (vendor bills specifically) in NetSuite webservices 2017_2 within a certain time period for a specified vendor, identified by internalId. However, it seems that the vendor's internalId part does not work for…
urgas9
  • 806
  • 9
  • 22