Hi Deepak,
We can hide the screen elements by using the below methods.
- Loop At Screen method in PBO - particular screen, assign the following attributes to the particular field.
LOOP AT SCREEN. IF SCREEN-NAME = 'FIELDNAME'. SCREEN-INPUT = 0. SCREEN-INVISIBLE = 1. MODIFY SCREEN. ENDIF. ENDLOOP.
2. Using SHD0 method, please find the following link to hide the screen elements
Best use of Transaction and Screen Variants in FICO
Regards
Rajkumar Narasimman