Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
0
votes
1 answer

NetSuite update Assembly Build with csv

we are trying to implement a system where we export the details of a work order (as csv) and import it into our manufacturing system for production. That part is working well, however the manufacturing system returns a csv with additional details we…
enfrost
  • 165
  • 1
  • 14
0
votes
1 answer

How to search for customer record joined with instances of a custom record which reference that customer record

We have a custom record which has a List/Record field that references a customer record. How can I do a search in SuiteTalk to get some fields from the customer record plus all the instances of that custom record which refer to that customer…
cja
  • 9,512
  • 21
  • 75
  • 129
0
votes
1 answer

Netsuite, how to search for Open Vendor Bills (Transactions)

Would seem to be simple but as so often with netsuite, it's painful. This is what i have so far: TransactionSearch invoiceSearch = new TransactionSearch(); TransactionSearchBasic invoiceSearchBasic = new…
mjames276
  • 71
  • 1
  • 7
0
votes
1 answer

NetSuite Data Export 100K+ rows daily

I'm looking into the best solution of how to sync products (items), invoices, sales orders & customers on a daily basis. I've had other portals that sync almost 1M records in a CSV every night and run flawlessly. Netsuite offers APIs but they all…
Jonathan Bird
  • 313
  • 5
  • 19
0
votes
0 answers

NetSuite SuiteTalk REST Web Services - How to Request Financial Statement Reports

I'm attempting to obtain a profit and loss statement, or balance sheet, using REST Web Services within Netsuite. I've been successful at calling unique ID records (customers, vendors, and their respective data), but now I'd like to be able to pull…
trevoraaron
  • 93
  • 2
  • 10
0
votes
0 answers

Suite Talk API : Fatal error: Uncaught SoapFault exception: [soapenv:Server.userException] Your connection has timed out. Please log in again

I am using php toolkit 2019_2 and have configured TBA with the consumer key, secret, token key and token secret. However, every time I run a script I get an error as below: Fatal error: Uncaught SoapFault exception: [soapenv:Server.userException]…
0
votes
0 answers

NetSuite SuiteTalk REST Web Services - Invalid Login Attempt - Sandbox Account ID vs. Account ID in URL

I'm attempting to use Netsuite Suite Talk REST Web Services (Beta, 2019.2 release) and have followed Netsuite's setup instructions (integration, token, downloaded Postman collection, etc). I keep getting a 401 error but found on stack overflow this…
trevoraaron
  • 93
  • 2
  • 10
0
votes
1 answer

NetSuite: SuiteTalk: PHP: Receive item from purchase order

I am trying to create ItemReceipt which is created from PurchaseOrder. I am adding my inventory items manually in purchase order during its creation. When I am receiving this order NetSuite web service is throwing following error: Adding new line to…
0
votes
1 answer

Saved search returns no results programmatically

I have the following code: var search = new TransactionSearchAdvanced(); search.savedSearchId = "680"; SearchResult searchResult = Client.Service.search(search); var resultList = searchResult.searchRowList; var castList =…
D4RKCIDE
  • 3,439
  • 1
  • 18
  • 34
0
votes
1 answer

How to Integrate Netsuite with 3rd party HRM software?

I am new in development. My manager wants me to be ready with the Netsuite integration with a third party HRM software(named: MenaHRM) that is open for integration. Can anyone help me where to start? Any prerequisites? Please guide me.
4N335
  • 267
  • 2
  • 29
0
votes
1 answer

NetSuite: SuiteTalk Retrieve Journal Entries lines

I try to retrieve Journal Entry lines using SuiteTalk without success. I'm able to retrieve the journal entry with a TransctionSearchBasic passing the journal id as criteria, but i'm unable to get all the journal lines details. Any clue ?
tompasto
  • 3
  • 3
0
votes
1 answer

Count SalesOrder Items more elegantly in SuiteTalk

I'm working on creating the backend for a NetSuite-based application using SuiteTalk. I'm trying to count the total number of items in SalesOrders. My issue is that, when performing a search operation to get all SalesOrders, the Record[] object…
Ewan Spence
  • 27
  • 10
0
votes
1 answer

How I get URL of a customer record in suitetalk by passing recordType and internalId

I am getting the customer records by passing the saved search script id and some filters in CustomerSearchAdvanced, but I want URL of each record also example- recordType customer and internalId is 3645 URL is -- …
0
votes
0 answers

How can we get the url of any record using TransactionSearchAdvanced using java

I want to get NetSuite URL of a record using saved search in java suite talk This is a java script code of Transaction Search, I have to convert it into Suite talk using java. I am able to get internalid, account, entity etc but i am not able to get…
0
votes
1 answer

NetSuite PHP web services API not allowing me to set Serial/Lot Number on Inventory Detail for Inventory Adjustment

I have the following code for the NetSuite PHP web services API but it's not allowing me to set the Serial/Lot Number on the Inventory Detail for an Inventory Adjustment. // Create new Inventory Adjustment. $conv = new InventoryAdjustment(); // Set…
Superdooperhero
  • 7,584
  • 19
  • 83
  • 138