‎2006 Aug 22 11:12 AM
Hi all,
There are 5 check boxes in a screen
correp to each check boxes there are 5 i/o fields
My requirement is if i check 1st two check boxes and press a button a report o/p screen should be displayed Showing the details of the checked check box . Sample codes will be preferable
‎2006 Aug 22 11:22 AM
Hi,
Lets say the Chek box names are Checkbox1,Checkbox2,Checkbox3,Checkbox4,Checkbox5
write the code in the PAI as below
IF sy-ucomm = <Ok Code of that push button>.
if the Checkbox1 = 'X' and Checkbox2 = 'X'.
SUBMIT zreport AND RETURN.
elseif the Checkbox3 = 'X' and Checkbox4 = 'X'.
SUBMIT zreport AND RETURN.
endif.
endif.
Thanks
Sudheer
‎2006 Aug 22 11:19 AM
hi,
use abap command:
1) parameters: ... USER-COMMAND ucom
2) fm like POPUP_TO_INFORM (search in se37 for popup*)
A.
‎2006 Aug 22 11:22 AM
Hi,
Lets say the Chek box names are Checkbox1,Checkbox2,Checkbox3,Checkbox4,Checkbox5
write the code in the PAI as below
IF sy-ucomm = <Ok Code of that push button>.
if the Checkbox1 = 'X' and Checkbox2 = 'X'.
SUBMIT zreport AND RETURN.
elseif the Checkbox3 = 'X' and Checkbox4 = 'X'.
SUBMIT zreport AND RETURN.
endif.
endif.
Thanks
Sudheer