PROPOSAL FOR TRACKTRACERX – NETSUITE INTEGRATION Proposal For TrackTraceRX-NetSuite Integration This proposal covers serialization process along with the TrackTrace-Netsuite integration. This proposal also covers the engagement scope of Jobin and Jismi IT Services LLP, as official implementation partner Of Oracle NetSuite. Table of Contents Summary This documentation covers serialization process along with the TrackTrace-Netsuite integration… Continue reading PROPOSAL FOR TRACKTRACERX – NETSUITE INTEGRATION
Author: Litha Mukunthan
Proposal for Sales Order PDF customization
PROPOSAL FOR SALES ORDER PDF CUSTOMIZATION _________________________________________________________________________________ JOBIN AND JISMI 03RD May 2023 Proposal For Sales Order PDF Customization This proposal covers the scope of sales order PDF template customization. This proposal also covers the engagement scope of Jobin and Jismi, as the official implementation partner Of Oracle NetSuite. Submitted To Blaž Dvorjak Research and Development Engineer … Continue reading Proposal for Sales Order PDF customization
Client Script For Validating the Date
Suite script Error SSS_INVALID_API_USAGE
When creating a record through CSV import, an SSS_INVALID_API_USAGE error is encountered. The SSS_INVALID_API_USAGE error appears when a user event script instantiates records by using the newRecord. When the script executes on a record that is being created, and the script attempts to use Record.getText(options) without first using Record.setText(options) for the same field. When the script executes on an existing record or on… Continue reading Suite script Error SSS_INVALID_API_USAGE
Permission To Export the Report
The client would like to add permission to a role that can export (download) the Report in various formats. For a custom role to have the ability to Export (download) the Report and Lists results, the role must have the Export Lists permission. This permission should be added to the custom role. On adding this permission the export button will be visible on the… Continue reading Permission To Export the Report
Setting Voucher Return Dates For EVO4 vouchers
We change the voucher return dates as per mentioned. This can be updated for vouchers upon booking. To change the date we can update the deployment parameter custom record field to a new value created in the Netsuite account. For changing the internal return dates and return dates of the impression and digital I have… Continue reading Setting Voucher Return Dates For EVO4 vouchers
Saved search to Fetch the Tax Percentage From Purchase order
/** * @description search function to fetch the tax percent from the purchase order record * @param {number} poRecordsId – purchase order internal id * @return itemObj – object containing tax percentage */function purchaseOrderDetails(poRecordsId) { try { let purchaseorderSearchObj = search.create({ type: “purchaseorder”, filters: [ [“type”, “anyof”, “PurchOrd”], “AND”, [“internalid”, “anyof”, poRecordsId], “AND”, [“mainline”, “is”,… Continue reading Saved search to Fetch the Tax Percentage From Purchase order
Import Sub customer to a parent customer
We can create a new customer as a parent just with the company name, and we can make those customers as parents on creating the sub-customer, and the transactions of sub-customers will reflect the same format as “Master customer Name: Sub-customer Name“. Import file used Sub customernInternal ID parent company 42332 68623 CSX **Master Account***… Continue reading Import Sub customer to a parent customer
Function to Fetch the number with two decimal points without rounding the number.
Function To Create Summary In Item Receipt
/** * @description the fuctcion to create the summary box * @param {number} values – Values for creating the summary like total, subtotal,tax total etc * @return html – html corresponding to the summary */ function createSummary(values) { try { log.debug(‘inside createsummary’); /** * @Description style the summary box using html code * */ var… Continue reading Function To Create Summary In Item Receipt