Scenario: In a transaction saved search if we want to get the number of back ordered quantity in the search, we can use this formula as formula text in the results column. Formula {quantity}-nvl({quantityshiprecv},0)-nvl({quantitycommitted},0)
Author: Vishnu S
A Method Set a Minimum and maximum limit based on array length (JavaScript)
In this method we can use the following code , if we want to iterate a loop maximum to 5 iterations and a minimum of the length of a particular array in the code. Code snippet: var maxIterations = Math.min(array.Length, 5);
Proposal For Implementing ACH Payment on the Website
Proposal Summary This proposal covers the implementation of the ACH Payment in the Suite Commerce Website of Elevate Oral Care. Requirement The requirement is to setup the ACH (Automated Check Handling) payment method on the website of Elevate oral care. Deliverables We can implement the ACH Payment on the website. We need to setup… Continue reading Proposal For Implementing ACH Payment on the Website
Proposal For Implementing the MOQ functionality in SCA website.
Proposal Summary This proposal covers the implementation of the MOQ (Multiple Order Quantity) functionality in the Suite Commerce Website of OX Tools Global. Requirement Currently in the NetSuite, MOQ functionality is implemented for creating sales orders. For the customers who have MOQ feature enabled in the customer record, we have to implement multiple order quantity… Continue reading Proposal For Implementing the MOQ functionality in SCA website.
Script for setting custom Login Access field when lead status changes to customer.
This is a client script based on the Field Changed functionality to set a checkbox custom field to true when the status of lead recod changes into Customer-Active. Code: /** * @NApiVersion 2.x * @NScriptType ClientScript * @NModuleScope SameAccount */ /************************************************************************************************ * * ClientScript ** * * ********************************************************************************************** * * Author: Jobin and Jismi *… Continue reading Script for setting custom Login Access field when lead status changes to customer.
Address Verification System (AVS) Error During Payment on SCA website
The AVS error I happening due to the verification of the billing address with the address in the credit card account, so due to this comparison, if there is a mismatch in any of the addresses, the AVS_ERROR will occur. Payment processing profile of the live account there is a checkbox “Ignore AVS Response on… Continue reading Address Verification System (AVS) Error During Payment on SCA website
Tip To Improve Performance of SCA Website
One of the method to improve the performance of SCA webpage while developing is to use images in the format WebP, If we have JPEG and PNG images, We can convert the images without changing its dimensions and can be converted into Webp format. This will decrease the loading time of the page and increase… Continue reading Tip To Improve Performance of SCA Website
Javascript code to stop the touch movement when a Field is selected in an HTML form
This code can be used to pause the touch movement in mobile devices while entering an input to a field or you can use in canvas field for signature etc. Code snippet: //Additional code in the javascript view file events: { ‘touchstart #in-modal-sig-canvas’: ‘preventCanvasScroll’ }, preventCanvasScroll: function(event){ event.preventDefault(); }, //Additional code in the javascript view… Continue reading Javascript code to stop the touch movement when a Field is selected in an HTML form
Proposal For Resale/Tax Certificate automation option from the SuiteCommerce site
Proposal Summary This proposal covers the feature for the Resale/Tax certificate automation option from the SuiteCommerce site of Cleerline Technology Group. Requirement The Cleerline Technology Group USA needs a feature for the Resale/Tax certificate automation option from the SuiteCommerce site. Deliverables We will add a check box to select the option for uploading the resale… Continue reading Proposal For Resale/Tax Certificate automation option from the SuiteCommerce site
How to give a hover effect with a slow fading effect to images in the UI
Scenario: While hovering using the mouse above the image, the image needs to reduce its opacity and fade with a smooth transition. Solution We can add the following CSS property to that specific image class in the CSS file. Code: