‎2010 Oct 25 10:29 AM
Hello expert,
In my selection screen. one checkbox CB_A. another two radio button RB_B, RB_C which are in the same group.
My requirement is :
When CB_A is marked, the RB_C should be selected automatically. What event shall I use?
Thanks in advance,
Regards, Johnny.
‎2010 Oct 25 10:54 AM
‎2010 Oct 25 10:36 AM
At selection screen .
Check the value for CB_A and based on this chose the radio button RB_C.
‎2010 Oct 25 10:37 AM
Hi Johny,
You can use the AT SELECTION-SCREEN event. But you should enable the user command for the check box
PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA.
Then in the AT SELECTION-SCREEN you can change the Radio button as X.
AT SELECTION-SCREEN.
IF CB_A EQ 'X'.
RB_C = 'X'.
ELSE.
RB_C = SPACE.
ENDIF.
Regards,
Immanuel.
‎2010 Oct 25 10:40 AM
>
> Hi Johny,
>
> You can use the AT SELECTION-SCREEN OUTPUT event. But you should enable the user command for the check box
>
>
> PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA. >>
> Then in the AT SELECTION-SCREEN OUTPUT you can change the Radio button as X.
>
> Regards,
> Immanuel.
That's usable. But: if you try to activate radio button 1 , it keeps changing to radio button 2. Not sure if that's what you want though.
‎2010 Oct 25 10:51 AM
Hi Maen,
Yes. I realized that after pressing the POST button and changed later :).
Hope this will work fine.
Regards,
Immanuel.
‎2010 Oct 25 10:54 AM