‎2007 Jan 03 1:10 PM
HAI ALL,
I AM USING BBP_CUF_BADI_2 for hiding fields but still its displaying pls give solutions:
following code i written as
IF wa_et_fields-fieldname = 'ZECO_REJ' or wa_et_fields-fieldname = 'ZTC_REJ'.
IF is_header-process_type = 'Z3EB'.
wa_et_fields-xdisplay = ' '.
wa_et_fields-xinput = ' '.
endif.
to hide the check box zeco_rej
‎2007 Jan 03 2:09 PM
Hi lakshmi,
What i understud is you are trying to modify the screen dynamically at runtime.
Normally for modifying the screen we loop at the screen and check for the element to enable or disable and we need to write the statement 'Modify Screen'.then only the screen gets modified.
just check out this sample code.
loop at screen.
if screen-name = 'PUS'.
screen-invisible = 1.
modify screen.
endif.
endloop.
hope this helps you.
regards,
sateesh.
‎2007 Jan 03 2:24 PM