2008 Feb 14 7:56 AM
how to disable Radio buttons from a module pool screen
loop at screen.
if screen-name = 'FOUR'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
I have given the following code,but its now working
2008 Feb 14 8:00 AM
Hi Mahesh,
Write a Module in Processes before output (PBO) and double click the module in your program write this code.
Module disable Output.
loop at screen.
if screen-name cp 'Radiobutton'. - - - ( In this your radio button name )
screen-active = 0.
modify screen.
endif.
endloop.
endmodule.
Reward if it is useful,
Mahi.
how to disable Radio buttons from a module pool screen
loop at screen.
if screen-name = 'FOUR'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
I have given the following code,but its now working
2008 Feb 14 8:00 AM
Hi Mahesh,
Write a Module in Processes before output (PBO) and double click the module in your program write this code.
Module disable Output.
loop at screen.
if screen-name cp 'Radiobutton'. - - - ( In this your radio button name )
screen-active = 0.
modify screen.
endif.
endloop.
endmodule.
Reward if it is useful,
Mahi.
2008 Feb 14 8:00 AM
Write this in a module in PBO
loop at screen.
if screen-name = 'ur radio button name in caps'.
screen-input = 0.
endif.
modify screen.
endloop.
2008 Feb 14 8:01 AM
Hi.
Are you sure you have used the right name, because this works for me:
PARAMETERS:
pa_1 TYPE c RADIOBUTTON GROUP rb1,
pa_2 TYPE c RADIOBUTTON GROUP rb1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'PA_2'.
screen-invisible = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
John.
2008 Feb 14 8:01 AM