Hi Team, How we can hide all Prices Fields(either ...
# administration
s
Hi Team, How we can hide all Prices Fields(either Body field, Line Fields) from Standard Transactions Records like Sales Order, Purchase Orders, Invoices for Specific Role ? Please guide Thank you
p
you can create a form where they don't show and release it for that role.
s
But actually on form customization, there is no option to hide Line Level Item amount field
p
oh, right. then you might try a beforeload userevent and set the field to "hidden". not sure if it works, but worth a shot.
👍 1
j
workflow or script can work on it
clientscript sample
Copy code
currentRecord.getField({ fieldId: "custbody_famid" }).isDisplay = false;
👍 2
Workflow sample
👍 1