Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Hiding Cost & Price Fields on the ProjectTask Sublist
Just got done with my week-long SuiteScript class, and feel empowered!
All week, I've been fixing things left-and-right in our installation that have been driving us crazy for months--it feels GOOD!
Anyways, one issue that I've been trying to work on all week, and I still don't have an answer for is the following...
ISSUE: For non-admins, we want to hide the following four fields in the Assignees sublist on the ProjectTask record:
1. Price
2. Cost
3. Unit Cost
4. Unit Price
I tried the following function in a User Event Script (BeforeLoad):
[INDENT]function beforeLoad(type,form)
{
form.getSubList('assignee').getField('unitcost').setDisplayType('hidden');
0