Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
0
votes
1 answer

Overriding NetSuite calculated tax amount on Vendor Credits using SuiteTalk SOAP api

I have a question regarding overriding NetSuite auto calculated tax amount on Vendor Credits using SOAP and appreciate your help. Background Our application is working with legacy tax feature of NetSuite where Tax Codes can be specified per Expense…
ADrs
  • 23
  • 4
0
votes
0 answers

How to get Currency and Term Names in Netsuite Search or Save Search

I am working on a solution on workato automation tool where I have to search newly created or updated invoices from NetSuite and get it synced to salesforce. As per this requirement I am performing a netsuite search operation in workato, which…
joono
  • 51
  • 6
0
votes
0 answers

Netsuite - Suitetalk Creating Vendor Bill with Receipts linked to items

Currently I am using suitetalk 2020.1 called via c# code In the UI if you have a purchase order with the selection on the MATCH BILL TO RECEIPT = true and you initialize and create a vendor bill, the corresponding items on the vendor bill will have…
jvoigt
  • 400
  • 4
  • 23
0
votes
1 answer

in Netsuite with suitetalk, can I insert a record and child records in the same JSON post?

I have a custom record "customrecord_mr23_perfil", and a child record "customrecord_mr23_perfilprice". In netsuite, I can insert this data at the same time how can i do this with a json, do I have to post once for the parent record and another one…
0
votes
1 answer

No Warning or error on duplicate Document Number in Sales Order

I have set Duplicate Number Warnings to Warn and Block in Setup -> Accounting -> Accounting Preferences. I have also checked Treat Warnings and Errors in Integration Preferences. What happens is that when I try to create a sales order using NetSuite…
Samar Rizvi
  • 423
  • 5
  • 18
0
votes
1 answer

SuiteTalk invalid credentials error in LCS training

I'm completing training on SuiteTalk in Oracle LCS. It appears that course files are no longer compatible with training account and it takes forever to get to get instructor's answer. I'm attempting Token-based authentication and I keep getting…
ArtK
  • 1,157
  • 5
  • 17
  • 31
0
votes
2 answers

What is the fastest way to generate an POST or GET SOAP XML payload for SuiteTalk Web services?

Hopefully someone can help me. I am currently using POSTMAN to run SOAP web service tests on NetSuite. Annoyingly, I am having to generate the body of an XML request from scratch, and would really like a method whereby a basic template is generated…
Arif WB
  • 186
  • 1
  • 13
0
votes
2 answers

Get Operational contact for a customer via Netsuite REST API

I'm currently building an integration with Netsuite using the Suitetalk REST API. I would like to retrieve the role of each contact associated with a customer to find the Primary and Operational contacts of the customer. I have tried querying the…
Mintelek
  • 1
  • 1
0
votes
1 answer

Netsuite Saved Search for List of Message and their respective File attachment

I have an use case to generate a report to get the list of message ID and their respective file ID (attachment). The report should show all message and the respective attachment attached to the message. Currently I have some third parties software…
0
votes
1 answer

Return Authorization: Cannot set shipping address through NetSuite SOAP api

If you look at the NetSuite’s SOAP schema browser for Sales Order, you can set custom billing and shipping address using the billingAddress and shippingAddress fields that you see in the schema browser. On the other hand, in Return Authorization…
Samar Rizvi
  • 423
  • 5
  • 18
0
votes
1 answer

Netsuite: How to mark a vendor bill as paid via the SOAP api?

In the UI, there's a button "Make payment" on the VendorBill that creates a VendorPayment and marks the status of the VendorBill to "Paid In Full". How do I reproduce that programmatically?
0
votes
1 answer

NetSuite SOAP API: Populate PurchaseOrderList on VendorBill record retrieval

When using the NetSuite SOAP API I would like to retrieve the purchaseOrderList for a VendorBill record. The purchaseOrderList field is shown as a RecordRefList on this docs page, however that field doesn't populate on responses when performing a…
Isaac
  • 1
  • 2
0
votes
1 answer

How to fetch Customer Payments from Netsuite using mulesoft connector

I want to search Netsuite customer payments using mulesoft Netsuite connector %dw 2.0 output application/xml ns ns0 urn:messages.platform.webservices.netsuite.com ns ns01 urn:sales.transactions.webservices.netsuite.com ns ns02…
joono
  • 51
  • 6
0
votes
0 answers

Netsuite query is not returning Currency Revaluation value

API: https://tstdrv243232323232.suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=1000 query: SELECT * FROM Transaction INNER JOIN TransactionAccountingLine ON ( TransactionAccountingLine.Transaction = Transaction.ID ) INNER JOIN…
GSV
  • 1
  • 2
0
votes
1 answer

NETSUITE SuiteTalk : SOAP XML Request - Attach

I am trying to create a request on the Netsuite's API SuiteTalk and I find myself stuck on a simple request to attach a file ( in my fileCabinet ) to an Invoice, see below my request then the response I get. What is particulary strange is that the…