Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
1
vote
1 answer

NetSuite - SuiteTalk - merge customers

I'm trying to find a way to merge two customer records in NetSuite. Our NetSuite data is synced from a SQL Server database, and occasionally two customer accounts are merged there. I need this to be reflected in NetSuite. I see that there is some…
melicent
  • 1,221
  • 15
  • 22
1
vote
1 answer

Retrieving "line unique key" via NetSuite Suitetalk web services

Is it possible to retrieve "line unique key" field for a NetSuite transaction via Suitetalk web services? "Line unique key" is available of Saved Searches. But I cant seem to find how to retrieve the same via get operation calls on the same…
reaper
  • 11
  • 4
1
vote
0 answers

NetSuite: how to get or set a value for an OtherCustomField through SuiteTalk SOAP API

In the NetSuite Customization UI, I've defined an "Other Custom Field" which applies to Address. I've edited a Customer's Address and specified a value for this custom field. When I use a SuiteTalk SOAP request to "get" this Customer, the response…
Patrick T
  • 294
  • 4
  • 5
1
vote
2 answers

Insufficient permission to view NetSuite Subsidiaries

I am using SuiteTalk web services and trying to use SubsidiarySearch to retrieve all Subsidiary records: SubsidiarySearchBasic srch = new SubsidiarySearchBasic(); srch.setIsInactive(new SearchBooleanField(false)); SearchResult res =…
Klitos Kyriacou
  • 10,634
  • 2
  • 38
  • 70
1
vote
1 answer

NetSuite - PHP search to get more than 1000 records

I'm working with NetSuite PHP Toolkit(2013_2 version). And I was able to make successful Saved-Search and Customer-Search. Except that, my actual customers are 1800 in total, whereas I get only 1000 records from my NetSuite call. So I need to know,…
G.J
  • 477
  • 1
  • 7
  • 22
0
votes
0 answers

Why i am seeing this error 'NS Invoice Creation Error: Please enter a value for customer'

have using Netsuite Webservice Logic Code. I want to convert Invoice to Customer payment.In the below code is working fine but I am seeing unexpected error InitializeRecord ir = new InitializeRecord(); ir.type = InitializeType.customerPayment; …
0
votes
1 answer

NetSuite SuiteTalk SDK

I am not able to find the JARs for these imports and I am searching the web since 1 hour. Could somebody please attach the required JARs here. Thanks a lot. import com.netsuite.webservices.platform.core_2021_1.RecordRef; import…
Ali Tc
  • 1
  • 1
0
votes
1 answer

Invalid login attempt while attempting to hit Netsuite SOAP API

Hi I'm trying to fetch data from NetSuite but unable to do so because of INVALID LOGIN ATTEMPT. Everything is running completely fine on Postman. The code is as following: import os import requests import hashlib import hmac import time import…
Kompal
  • 9
  • 3
0
votes
1 answer

SOAP UI Netsuite TBA Authentication Issue

I am in the process of trying to set up an integration with our freight company to pull tracking details into Netsuite. To familiarise myself with the process I have installed SOAP UI and created an integration on our Sandbox account. I am simply…
0
votes
0 answers

NetSuite - How can I get the users and roles via SuiteTalk API?

I am trying to find a way to use NetSuite API and pull information about the users and what role each user has. It seems very complicated to perform such action via NetSuite REST API. I have the client id, secret and token id and secret, it seems…
0
votes
1 answer

Netsuite PHP unable to add items to new Sales Order

as the title says, I am having no luck adding item(s) to a Sales Order when using the NetSuite PHP API Client created by Ryan Winchester (https://github.com/netsuitephp/netsuite-php). It's really just the Netsuite PHPToolKit with namespaces and…
John
  • 65
  • 2
  • 13
0
votes
0 answers

In SuiteTalk, on a transaction, how do I find out the subtype of the item on the order line?

I have a SuiteTalk integration with Netsuite. We pull down transactions into another application using advanced search with saved searches, and sometimes we need to know what kind of items (e.g. serial, lot, assembly) are on the transaction lines as…
Emma
  • 19
  • 7
0
votes
0 answers

Can I send an email via SuiteTalk?

Using SuiteTalk (not SuiteScript), can an email actually be sent to a customer (or vendor, etc.) I know I can add a message to a record via SuiteTalk, but can I actually send it?
Donny Kwitty
  • 327
  • 2
  • 15
0
votes
0 answers

NetSuite REST API SuiteTalk Create Sales Order

I am having great difficulty in creating a Sales Order using NetSuite’s REST API: my @items; my $it={ 'item'=>{ 'id'=>'55554', }, 'quantity'=>1, 'amount'=>100.0, 'taxAmount'=>20.0, }; push @items,$it; my $pp={ …
0
votes
1 answer

NetSuite SuiteTalk SOAP retrieve Amortization Schedule list

I am trying to retrieve the list of Amortization Schedules from NetSuite using the SuiteTalk SOAP web services. The list is accessible in NetSuite UI by going to List -> Accounting -> Amortization Schedules. I am using the php library…
ADrs
  • 23
  • 4