Issue In a vendor return record, a client script is deployed. In the pageInit of the script, the code intended to set the inventory details for the item lines. But when the pageInit was triggered, an error occurred saying selectNewLine is not a function when the script was trying to set the inventory detail. Also,… Continue reading Inventory Detail Setting using script
Tag: inventory detail
Configuring Inventory Details for Inventory Adjustments in SuiteScript
When configuring the inventory detail for inventory adjustment record, the serial/lot number needs to be set to the fieldId issueinventorynumber. function createInventoryAdjustment(itemReceiptDetails, rmaTranId, currentBin) { try { let inventoryAdjustmentRecord = record.create({ … Continue reading Configuring Inventory Details for Inventory Adjustments in SuiteScript
Disable line-item inventory detail button in quotes
To disable line-item inventory detail button in quotes. The following function is used. function hideInventoryDetailButton() { try { $(‘#inventorydetail_helper_popup’).hide(); $(‘[title=”Delete”]’).hide(); } catch (error) { log.error(“Error @hideInventoryDetailButton”, error); console.log(“Error @hideInventoryDetailButton”, error.message) } }
Why don’t some of the locations appear in the item’s Inventory Detail subtab?
Issue Reason Items that are on hand but were not associated to bins will not show under Inventory Detail. The item in a particular location is not allocated to the bins when the inventory adjustment has been created. Items that are on hand but were not associated with bins will not show under Inventory Detail… Continue reading Why don’t some of the locations appear in the item’s Inventory Detail subtab?
Inventory Detail to be made mandatory on Item Receipt
We just found out that ‘Inventory Detail’ section on the item receipt is not mandatory and the users can create item receipt without putting in any details about bin, etc. We would like to make this section mandatory for every line on any item receipt but the option is not available either at the form… Continue reading Inventory Detail to be made mandatory on Item Receipt
Display Lot Number Column on Advanced PDF/HTML Template for Invoice
In an Advanced PDF/HTML Template for Invoice, the Lot Number column is required to be displayed. Navigate to Customization > Forms > Advanced PDF/HTML Templates Preferred Advanced PDF Template: Click Edit Source Code: Add below code <#if record.class = “04 Aviation”> <th align = “right” colspan “4”> Lot Number </th> <#else> <th></th> <#if> <#if record.class = “04 Aviation”> <td align = “right” colspan… Continue reading Display Lot Number Column on Advanced PDF/HTML Template for Invoice
Replace lot number in inventory detail of a transaction record using SuiteScript
Use bin items were unable to add on Bin Transfers transactions
Use bin items were unable to add on Bin Transfers transactions
Serial Number of Inventory Detail
Refer the following sample code for fetching the serial number from inventory details into advanced PDF template