Hi All
Question to experts
I need Disable Hide Filed & Go to main table on user screen , Can You can do it ???
Please help me .
Hi All
Question to experts
I need Disable Hide Filed & Go to main table on user screen , Can You can do it ???
Please help me .
add the following lines at the end of the macro
#define.taskFilterHide(2848)
#define.taskViewDetails(293)
if(_p1 == #taskFilterHide || _p1 == #taskViewDetails)
{
return 0;
}
ret = super(_p1);
this will affect on all the forms.
Note: If you want to disable the above options for the specific form, then override the task method on the form and place the above code and in the declaration.add #task
Regards,
Raghav.
Thanks a lot Raghav ,
But after implement the code ihave error , please see the attached below :
Regards,
Hi,
I haven’t mentioned in my reply that, SysSetupFormRun is a class, where in the task() method you need to place the code.
If you want to disable in any particular form, you need to override the task method and place the code there.
Regards,
Raghav.