Yvonne
12/10/2024, 4:37 AMif (isKit) {
//load the item using the internal id
itemObj = record.load({
type: record.Type.KIT_ITEM,
id: itemInternalID,
});
} else if (isInventory) {
//load the item using the internal id
itemObj = record.load({
type: record.Type.INVENTORY_ITEM,
id: itemInternalID,
});
}
var quantityuom = itemObj.getValue({
fieldId: 'quantityuom',
});
2.
var quantityuom = loadedIF.getSublistValue({
sublistId: 'item',
fieldId: 'quantityuom',
line: i,
});
3.
quantityuom = loadedIF.getValue({
fieldId: 'quantityuom',
});
All 3 methods return the result (for both fields): undefined
Also, I tried searching here and could not find the field, so I don't know which subrecords to try joining to to load the data out either:
https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2024.1/index.html#/definitions/itemFulfillmentmbrewer
12/10/2024, 3:36 PMmbrewer
12/10/2024, 3:36 PMmbrewer
12/10/2024, 3:37 PMYvonne
12/10/2024, 9:55 PMmbrewer
12/11/2024, 7:35 PMmbrewer
12/11/2024, 7:49 PMquantityshiprecv
is quantitypickpackship
mbrewer
12/11/2024, 7:49 PM&xml=T
to the page URL)mbrewer
12/11/2024, 7:50 PMYvonne
12/11/2024, 10:11 PM