I want to extract Item name/number of a child item using saved search. Netsuite account contains item hierarchy Parent-> Child Item. Name of Parent is PARENT and Child item name/ number is CHILD. I have created a saved search for item ,While pulling the Child items name it is appearing as PARENT : CHILD. But I want it to appear as CHILD if Child item's data is being pulled. I also tried using {itemid} but its not working.
Asked
Active
Viewed 1,877 times
2 Answers
2
You can use the following formula to give just the child id:
case when instr({itemid},' : ')!=0 then substr({itemid},instr({itemid},' : ')+3) else {itemid} end

Krypton
- 4,394
- 2
- 9
- 13