简体   繁体   中英

NetSuite Saved Search Formula

How can you get the debit amount of GL Impact by using the saved search? Here is my code I'm using custom record and custrecord_agri_feedd_ialink is the Inventory Adjustment value.

CASE WHEN {custrecord_agri_feedd_parent.custrecord_agri_feedd_chxgender} IN 'Female' THEN {custrecord_agri_feedd_parent.custrecord_agri_feedd_ialink.debitamount} END

Thanks!

CASE WHEN {custrecord_agri_feedd_parent.custrecord_agri_feedd_chxgender} IN 'Female' THEN {custrecord_agri_feedd_parent.custrecord_agri_feedd_ialink.debitamount}

You need not to use IN. Just use (=) equal sign for this and put in the ELSE condition as well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM