NetSuite SuiteTalk SOAP retrieve Amortization Schedule list - netsuite

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 https://github.com/netsuitephp/netsuite-php.
It seems like retrieving this list is not possible using the SOAP web services. I can't find any classes for searching this record in the php library, and in NetSuite schema browser (https://www.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2022_1/schema/record/account.html) there is no entry for Amortization Schedule.
I was wondering is my understanding correct that this list is not supported by SuiteTalk SOAP API? Appreciate your help.
I searched through the php library classes and can't find any related classes for Amortization Schedule search.

Related

Netsuite : Is it Possible to Integrate Financial Reports like Balance Sheet API in Netsuite?

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 a set of financials for a specific period/entity. Is there a way I can do that using Python, Postman, or does REST Web Services not support that sort of functionality?
Thanks in advance for your help.

Can docusignapi be used to create entities in netsuite after a doc is signed?

I want to figure out if its possible to have docusign call netsuite after a document has been signed.
We can pass the parameters docusign needs to pass to netsuite. So it would save the process a call to netsuite, if docusign can dump some company data into netsuite.
I know there is a plugin for netsuite that works with docusign: "DocuSign for NetSuite". But this plugin seems to be taking the perspective of calling docusign from netsuite rather than the other way around.
Is there some way to pass data to the docusignapi that is then passed to netsuite in a create entity call?
Not directly: You'd need to build the bridge between DocuSign and NetSuite. You could use DocuSign Connect to capture incoming envelope data, and then have your application do the necessary interactions on the NetSuite side.

Can following be achieved using Docusign APIs?

I'm trying to achieve some requirements via Docusign APIs. Would like to know if it's possible before I start the project.
I've used Docusign app for Salesforce earlier, but now I'm trying to achieve some functionalities through API calls
Ability for a Signed Document sent to a contact (by clicking on a button on contact record) to be attached to the Contact record it was sent from
Ability to write back to the record from a field tagged on the DocuSign envelope
Vinay, this functionality is available using the DocuSign for Salesforce integration. If you would like to write it yourself using APIs, you can start by looking at our Apex toolkit here - https://developers.docusign.com/salesforce/guides/apex-toolkit

What are the calls allowed by QuickBooks Web Connector?

My client has two Companies on the same QBES (Enterprise), in other words, two Company files.
We are creating a Web Application (Angular + Web Api 2) to automatically generate Purchase Orders based on new Sales Receipts created by their ecommerce integration plug-in (probably SkuVault), we need then to create the Sales Order in Company B based on this PO, and after that, the Bills and Invoices respectively. I found all the calls I should be calling on the SDK documents, but since this architecture requires us to use Web Connector, will I be able to make all the calls listed on the SDK using the Web Connector?
What are the calls allowed by QuickBooks Web Connector?
All of them.
will I be able to make all the calls listed on the SDK using the Web Connector?
Yes.
More details:
The Web Connector is just a SOAP wrapper around the normal QuickBooks SDK calls. It's nothing special or magical or even very technical in nature, it's just a simple SOAP wrapper around the rest of the XML-based COM SDK. So, anything you can feed to QuickBooks normally, you can feed via the Web Connector.

Custom webservices on NetSuite

Is there a way to upload custom web services to the netsuite platform to add custom business processing logic?
Looked into SuiteApp/SuiteBundles and all they provide is a way to extend existing records/forms/lists, add custom scripts so on and so forth. Havent been able to find information on integrating external webservices.
You can use Restlets to create Custom Functionality in a particular Netsuite account and than the restlet can be accessed externally.
If you want the logic of web-service written in Java / .Net then you can use SuiteTalk to communicate with NetSuite. Where all the processing is done in your service and you use API to get/set data to/from NetSuite.
But on the flip side you have to host this service on your end.. NetSuite can only host web-services written in the form of RestLet / SuiteLet.

Resources