‎2008 Aug 12 7:30 AM
hi all,
i want create checkbox in output display n numbers and allowed user to select the checkbox ..based checkbox user click it as to go to next screen and display ........ then i want hide that check that has been
checked by user .......................... it in normal report r interactive reports
or alv reports
thanks advance
‎2008 Aug 12 7:32 AM
‎2008 Aug 12 7:32 AM
‎2008 Aug 12 7:35 AM
how to do it send me code................
and then when user gets back checkbokx must be hide
‎2008 Aug 12 7:54 AM
how to do it send me code................
and then when user gets back checkbokx must be hide
‎2008 Aug 12 8:03 AM
Hi...
Try to understand the logic....
and you write this for your program...
>DATA: check1 TYPE c LENGTH 1 VALUE 'X'.
>
>INITIALIZATION.
>
>START-OF-SELECTION.
>set PF-STATUS 'ZEX'.
> WRITE: / check1 AS CHECKBOX.
>
>at user-command.
>CASE SY-UCOMM.
> WHEN 'DISPLAY'.
> IF CHECK1 = 'X'.
> WRITE:/ 'YOUR CHECK BOX IS ACTIVE'.
> CLEAR: CHECK1.
> ELSE.
> WRITE:/ 'YOUR CHECK BOX IS INACTIVE'.
> ENDIF.
> ENDCASE.
Thanks,
Naveen.I
‎2008 Aug 12 7:34 AM
Hi,
Please frame your question properly. What i understand is that, you have to clear the check box in the next screen...
just use ... 'Clear (checkbox variable)'...
Regards,
Madan.
‎2008 Aug 12 7:36 AM
how to do it send me code................
and then when user gets back checkbokx must be hide
‎2008 Aug 12 7:37 AM
how to do it send me code................
and then when user gets back checkbokx must be hide
‎2008 Aug 12 7:54 AM
how to do it send me code................
and then when user gets back checkbokx must be hide
‎2008 Aug 12 7:35 AM
Hi.. Santh....
You can do it with Normal Interactive, or ALV interactive.
Thanks,
Naveen.I
‎2008 Aug 12 7:36 AM