Hi,
I'm not sure about the functionality specifically for salespeople, but you can hide a field using code by simply extending the page and setting the visibility condition to false for that field. Here's an example of how to do it..
pageextension 50103 "Ext Page Name" extends "Your Page"
{
layout
{
modify("YourField")
{
Visible = false;
}
}
}
If you tell me the specific scenario or page, I can provide you with a more specific solution..
Regards