Hi,
I am trying to get the inventory lot number, inventory on hand and inventory status field of an lot numbered item in specific location using suite script (The same information under inventory detail tab for an item and sublist name is Inventory Detail).
I have created an search Inventory Balance record and obtained the expected values but it seems that the record is supported by suitescript
inventorydetail sublist is not present in record browser so it cant invoke using N/record module
var ItenRecord = record.load({
type: 'lotnumberedinventoryitem',
id: id
});
var sublistFieldValue = ItenRecord .getSubrecord({
fieldId: 'inventorydetail'
});
Please share if any workaround
Thank you