Alli Deacon
02/02/2022, 7:27 PMselect ExternalID as Validation FROM item where itemid='1-1624-8-89' or DisplayName ='1-1624-8-89' or UPCCode = '1-1624-8-89'
However, it returns NULL. When I look up the item in the NetSuite UI I see that it is Item ID 590557. When I run the following query it still returns NULL, select ExternalID as Validation FROM item where id = '590557'
. The item url is app/common/item/item.nl?id=590557
. I am at a loss here why it's returning a NULL, when by all angles it should be returning the correct item. Any assistance is appreciated! TIA 🙂tdietrich
02/02/2022, 10:03 PMSELECT ExternalID AS Validation FROM Item WHERE ID = 36315
tdietrich
02/02/2022, 10:04 PMSELECT TOP 10 ID, ExternalID AS Validation FROM Item WHERE ExternalID IS NOT NULL
Alli Deacon
02/03/2022, 1:47 PMAlli Deacon
02/03/2022, 2:53 PM