Hi All, I'm having trouble getting the Id from Inb...
# general
k
Hi All, I'm having trouble getting the Id from Inbound shipment save search Does anyone know what fields I need to use?
r
Try using the chrome extension https://chrome.google.com/webstore/detail/netsuite-field-explorer/cekalaapeajnlhphgdpmngmollojdfnd it will show you that field and the field Id to use
k
Hi that extension you gave me, I had it installed but it didn't work, i have this other one
I can't seem to find the items.id on the saved search for inbound shipment
r
I see id: 2920
Doesn’t match with the period but that’s what it’s seeing
k
I do not know how to find that on the saved search for inbound shipment. Not sure what field i need
r
Try using formula(numeric) then go to the formula and look up items field and Id
k
Tried it but can't find Id. I tried Internal Id and that isn't it
Image URL is the first of the "i"
r
Go to the very bottom to the item fields…
k
Yes I'm currently there
I also look through the whole Item field list and it did not have id for me to choose
r
Try choosing one from the item fields list and changing the formula to something like {item.id}
k
Tried it, {item.id} gives me the item itnernal id, not the shipment line id
r
.id will be there field you want so its either item.id or items.id I believe
k
{items.id} invalid " ERROR: Field Not Found"
r
On the chrome extension is there more info past the items list? Like shipping sublist?
k
No the only sublist i have is items, and landedcost
I am able to do get the lineId directly when i tried to bulk receive.
Copy code
const lineId = bulkReceive.getCurrentSublistValue({
      sublistId: "receiveitems",
      fieldId: "id",
    });
I just don't know how to get it via saved search.
r
Maybe item.lineid?
k
{item.lineid} = ERROR: Field Not Found
r
When you do item.id what value shows?
k
the internal id of the item
r
2920?
k
no
something else
13555
which is the internal id of the item
👍 1
r
Odd
k
yes, very weird
r
Is it item.vendorid?
Or just shipmentnumber
e
Add &xml=T to the inbound shipment record to spy on the fields
s
field should be “Items - Line Id” (inboundshipmentitemid)
k
thank you, got it