Discussions
Common Custom transaction field for transactions
Hi all,
I need to create a transaction column field that can be applied to both sale transactions and inventory transfers.
I Need a default value in that field as Quantity*2 to be shown for each line item.
NVL({quantity}*2,{quantityonhand}*2).
It is giving me a quantity field not found in the transfer order column.
CASE WHEN {type} = 'Inventory transfer' THEN {quantityonhand}*(1/6) ELSE {quantity}*(1/6) END
I write the formula in the decimal number type custom field's formula by ticking the formula checkbox.
Please let me know if I may need to create two different fields or as a single field that will work both transactions (sales order and inventory transfer).