‎2007 Nov 30 10:36 AM
Hello Gurus,
I have a requirement like this ,
My report will have a output starting with a check box.
i want to read all those selected check box records into another internal table, how can i do this ..
Plz help ASAP.
Thanks,
Suresh
‎2007 Nov 30 10:40 AM
Use At Line selection
and read each and every line...if the line starts with 'X', that means the checkbox is selected, then this record can be passed into another internal table..
‎2007 Nov 30 10:47 AM
PARAMETER: p_fname TYPE c as check box MODIF ID md1,
for all check boxes assign MODIF ID md1
LOOP AT SCREEN.
IF screen-group1 EQ c_md1.
move screen-name to itab-name.
assign <FS> to itab-name.
itab-value = <FS>.
append itab .
clear itab.
endif.
ENDLOOP.
‎2007 Nov 30 10:56 AM
Hi,
Suresh
I think u have a filed of size one of type c
in u r internal table as u allowing check box to place so tht will be filled with X when ever u checked it it gets filled with X
so write u r loop at screen accordingly
PLZZZZZZZZZZZ REWARD IF USEFUL.