‎2009 Jun 12 6:09 AM
Hi,
I have developed a module pool program where I kept four radiobuttons in the 1st screen. Besides that one input field is there to enter some value.
My requirement is, when I select the 1st radiobutton, the input field should be enabled. When I select the other radiobuttons, that input field should be invisible.
I do not want to press any button to make that field invisible after selecting the other radiobuttons. That should happen immidiatly after the selection of the other radiobuttons.
Please provide the coding where I need to write to make it happen.
Regards,
Nrusingha
‎2009 Jun 12 6:14 AM
Hi,
In Module Program U need to handle this events in PAI.
U Can find lots of posts and code samples in SDN.
Please try a search in SDN.Please dont post Basic Questions.
Thanku,
Lakshman.
‎2009 Jun 12 6:22 AM
Hi Lakshman,
Thanks for your suggestion.
I have tried a lot, but not able to find out my solution. Please don't assume on your own for this kind of suggestions. If you get some link for my solution, please provide.
Thanks again,
Nrusingha
‎2009 Jun 12 6:33 AM
‎2009 Jun 12 6:26 AM
Hi,
Try this following code....
LOOP AT SCREEN.
CASE screen-name.
IF screen-group1 = 'Give ur radio button group here'
check for your condition .
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
Please let me know if your problem continues..
‎2009 Jun 12 6:31 AM
try
PBO
module modify_screen.
module modify_screen.
if radio = 'X' .
loop at screen.
check screen-grp1 = 'RB1'.
screen-active = 0.
modify screen.
endloop.
endif.
endmodule.
regards
Prabhu