‎2008 Jan 02 3:49 AM
hi all, i have a problem here.
i want to create checkboxes dynamically according to the no. of records in the internal table.
For example, my internal table ITAB1 got 12 records. i have to generate out 12 checkboxes.
anyone knows how to solve this?
thanks.
‎2008 Jan 02 4:12 AM
Hi,
Check this link. Cetainly it will be useful.
http://www.sap-img.com/abap/regarding-runtime-creation-of-check-boxes.htm
Regards,
Vadivelan B
‎2008 Jan 02 4:12 AM
Hi,
Check this link. Cetainly it will be useful.
http://www.sap-img.com/abap/regarding-runtime-creation-of-check-boxes.htm
Regards,
Vadivelan B
‎2008 Jan 02 4:14 AM
Hi,
You can display as many check boxes as the number of records in your internal table using the ALV.
Say, you declare a internal table of some dummy type.
In a DO XXX times ENDO you can fill this internal table with as many records as the number of check boxes.
Then in the field catalog set this field in the internal table as check box and display the same in an ALV.
Thanks,
Avanish Joshi
‎2008 Jan 02 4:29 AM
loop at itab into wa.
write:/ wa-field1, wa-field1 AS CHECKBOX.
endloop.
‎2008 Jan 02 4:44 AM
Hello meei huey ho,
I suppose your question is not clear . where you want this check box.
it is quite possible to make the check box againest the No of record is following place :
1. List Report (Both).
2. ALV (Both).
3. Table control.
I think it help you or better you define question more .
Regards
Swati namdeo