Script to get the transit time details from FedEx and UPS API to Item fulfillment record in NetSuite.

Userevent script to get the transit time details from FedEx and UPS. The requested transit time details can be displayed in a tabular format in Item Fulfillment record. const beforeLoad = (scriptContext) => {       try {         if (scriptContext.type === scriptContext.UserEventType.CREATE) {           let newRecord = scriptContext.newRecord;           let shippingCarrier = newRecord.getValue({ fieldId: ‘shipcarrier’ });           let transactionDateObject =… Continue reading Script to get the transit time details from FedEx and UPS API to Item fulfillment record in NetSuite.