Proposal Summary To make changes to an existing B2B soft integration that is based on an invoice. The B2B soft PO creation sync is currently based on sales orders. Based on the invoice, we’ll change the integration logic. If a sales order contains multiple invoices, we will create a PO in B2B soft for each… Continue reading Proposal For Updating the B2B Soft integration based on the invoice.
Tag: suitelet script
Proposal For Updating the SCP Location Quantity And SCP TN Inventory Field In the Item record.
Proposal summary This proposal is for an update to the superior communication integration script that is currently in use. When an item is removed from the superior communication inventory response, the script currently ignores the item’s quantity update. To deal with this scenario, we’ll need to write scripts and set the quantity to 0 if… Continue reading Proposal For Updating the SCP Location Quantity And SCP TN Inventory Field In the Item record.
Accessing email data send from email plugin inside Suitelet script
The data can be send to a suitelet from a email capture plugin implementation javascript file using ‘POST’ method.If the suitelet is triggered in ‘POST’ method, we can access this data.The data transferred using ‘POST’ method will be inside ‘scriptContext.request.body’. Since this is transferred as JSON file, the first step on using the datais to… Continue reading Accessing email data send from email plugin inside Suitelet script
Add an additional column for displaying an image in the Picking ticket PDF document.
Create an additional column for showing the configurator image in the picking ticket (from the Sales order). Check the picking ticket button functionality (Suitelet: JJ SL PickingTicketPrint.js) and update the script as well as the XML file(if available) to add the personalized image corresponding to the item line.
Filters using suitelet script
Problem: Create a suitelet script that loads a custom search US CASES – HOURS TO CLOSE search result in a given format for klipfolio and create filters for ‘created date condition’ also replace the same condition with that of UI by using splice() method. Solution load the custom search 2.Add the filters 3.Replace the condition… Continue reading Filters using suitelet script
Navigation from One suitelet to Another suitelet
Scenario: By clicking from a suitelet it need to be navigate to another Suitelet Solution: Every elements in the suitelet can be added by using usual suitelet form and form elements. To navigate from a suitelet to another you can use window.location.href, along with URL. In this example, projects are listing and according to the… Continue reading Navigation from One suitelet to Another suitelet
Showing values of a field according to the values of another field using Suitelet
Scenario: There can be one or more tasks can be for a project. Here We are listing projects and It has to list the project tasks of selected project using a suitelet. Solution: //JJ SL Suitelet.js //JJ CS Validations.js
Voucher code to be viewed on the website
Suitelet to return the customer voucher numbers statistics (booked, unbooked, and completed) to the lab home on the SCA website. Suitelet
Auto journal creation & application in Payment
Scenario: Create a journal for applying in the credit section of the payment. Ultimate need is to capture the credit info from the custom record, need to create a journal or custom transaction of journal type then apply the same in the payment record.We have seen a limitation of once payment is saved the credit… Continue reading Auto journal creation & application in Payment
Sample Suitelet – User interface Form
/** * @NApiVersion 2.1 * @NScriptType Suitelet */ /** * Simple form with Name field – Say hello */ define([‘N/ui/serverWidget’], /** * @param{serverWidget} serverWidget */ (serverWidget) => { /** * Defines the Suitelet script trigger point. * @param {Object} scriptContext * @param {ServerRequest} scriptContext.request – Incoming request * @param {ServerResponse} scriptContext.response – Suitelet response *… Continue reading Sample Suitelet – User interface Form