Hi All: Does anyone know what the record name is ...
# suitescript
a
Hi All: Does anyone know what the record name is for a Shipping Package on an Item Fulfillment? Also, does this somehow tie into the Line Item? Thanks!
e
Packages are a sublist of the Item Fulfillment record.
Copy code
record.setSublistValue({
                sublistId: "package",
                fieldId: "packagetrackingnumber",
                value: shipment.trackingNumber,
                line: shipment.line
            });
a
Thanks!