I am trying to get a sublist-subrecord in SuiteScr...
# suitescript
e
I am trying to get a sublist-subrecord in SuiteScript 1.0 This is how I would do it in 2.0
Copy code
const invObj = record.getSublistSubrecord({
            sublistId: 'item',
            fieldId: 'inventorydetail',
            line: 0,
        });
Anyone know how to to it in 1.0?
n
nlobjRecord.editCurrentLineItemSubrecord
nlobjRecord.createCurrentLineItemSubrecord
e
Even if I just want to view it?
Thanks @NickSuite I used the `viewLineItemSubrecord`now that I know that
1.0 SublistSubrecord -> 2.0 LineItemSubrecord
👍 1