Proposal Summary Flowco would like to have enhancement on the existing Packing Slip. Requirement Flowco is having the following mentioned issues • The Backorder column doesn’t populate correctly on the Packing Slip until order is fulfilled. The calculation of the backorder column is customized on the PDF/HTML coding – Waterworks New Packing Slip PDF/HTML Template… Continue reading Proposal for Packing Slip Enhancement
Author: Hari Krishnan
Proposal for Picking Ticket Enhancement
Proposal Summary Flowco would like to have enhancement on the Picking Ticket PDF Requirement Flowco needs to calculate the picking quantities correctly in the Picking Ticket in order to avoid confusion for Warehouse employees. For example, A Customer ordered x5 qty of SSBN25 and was dispatched x3 qty and x2 qty was placed on backorder. … Continue reading Proposal for Picking Ticket Enhancement
Online Case form Template using Bootstrap and validation using DOM
Solution <!DOCTYPE html><Head><meta charset=”utf-8″><Title>Revo Online Case Form</Title><meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link href=”https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css” rel=”stylesheet”><link rel=”stylesheet” href=”https://fonts.googleapis.com/css?family=Work Sans” type=”text/css”><style>input[type=”text”]{width:67%;font-size:14px;display:block;}.control-label{font-size:13px;display:block;} select { display block;font-size:14px; width:70%;}.btn{font-size:14px;padding:8px;margin-bottom:100px;}textarea{width:67%;height:32px;display:block;font-size:22px;}option { font-size: 14px; font-weight: normal; line-height: 0px;}body{letter-spacing:.07em;font-family:Work Sans;}</style><script type=”text/javascript”>if(performance.getEntriesByType(“navigation”)[0].type == “back_forward”){ location.reload();}function getData(){var title=document.getElementById(‘title’).value;var fname=document.getElementById(‘firstname’).value;var lname=document.getElementById(‘lastname’).value;var email=document.getElementById(’email’).value;var adrs=document.getElementById(‘address1’).value;var state=document.getElementById(‘state’).value;var city=document.getElementById(‘city’).value;var item=document.getElementById(‘custevent_jj_prdt_num_brl_57’).value;var ctgry=document.getElementById(‘category’).value;var msg=document.getElementById(‘incomingmessage’).value;var year=document.getElementById(‘custevent_jj_year_brl_43’).value;var zip=document.getElementById(‘zipcode’).value;var d = new Date(); var n = d.getFullYear();var… Continue reading Online Case form Template using Bootstrap and validation using DOM
Generating passwordGUID and hostkey for connecting external servers via suitelet
Solution var HTTPSMODULE, SFTPMODULE, SERVERWIDGETMODULE;var HOST_KEY_TOOL_URL = ‘https://ursuscode.com/tools/sshkeyscan.php?url=’;/** *@NApiVersion 2.x *@NScriptType Suitelet *@NModuleScope Public */define([“N/https”, “N/sftp”, “N/ui/serverWidget”], runSuitelet);//********************** MAIN FUNCTION **********************function runSuitelet(https, sftp, serverwidget){ HTTPSMODULE= https; SERVERWIDGETMODULE= serverwidget; SFTPMODULE= sftp; var returnObj = {}; returnObj.onRequest = execute; return returnObj;}function execute(context){ var method = context.request.method; var form = getFormTemplate(method); if (method == ‘GET’) { form =… Continue reading Generating passwordGUID and hostkey for connecting external servers via suitelet
Attaching Records to A support Case
Solution We can attach records to a support case by following code syntax : record.attach({ record:{ id: caseid, type: record.Type.SUPPORT_CASE}, to: {id: id, type: ‘transaction’} }); Where case id – case record internal id id : internal id of the transaction which we want to attach Module : N/record
Reallocate Item Page Restriction
MAR 682 Requirement Restrict the employees from accessing the Reallocate Items page in Netsuite Solution This can be achieved by triggering a user event script on beforeLoad() /*Version : 1.0Script : User event scriptScript Deployment: REALLOCATE ITEMThis script summarises that only allowed employees have access to reallocate items others are being restricted.*///triggers on before loading… Continue reading Reallocate Item Page Restriction