i have saved the search which gets the qty sold o...
# suitescript
s
i have saved the search which gets the qty sold of the member item (parent item ) i am litle confused with the syntax how can i get info about the item like cost name etc
Copy code
DECODE({item.memberitem},NULL,{item},{item.memberitem})  DECODE({item.memberquantity},NULL,{quantity},{quantity}*{item.memberquantity})
b
im guessing this is a transaction search
in which case you wouldnt have access to the member item join
the item join of the transaction search only has a couple of member related columns
the full information is in the member item join of the item, which is one level to far for a transaction search
s
If I switch this to a sql search I assume it would work
b
yes