Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

how to create a check box in table control

Former Member
0 Kudos

Hi,

How to create the check box in table control

1 ACCEPTED SOLUTION

gopi_narendra
Active Contributor
0 Kudos

Just drag a CHECK BOX control into the table control in SE51.

Regards

- Gopi

3 REPLIES 3

Former Member
0 Kudos

Hi,

IN the control elements..Give the name..And press enter..It will ask if you want to create input/output field, text field, checkbox..

Then choose checkbox...

Thanks,

naren

gopi_narendra
Active Contributor
0 Kudos

Just drag a CHECK BOX control into the table control in SE51.

Regards

- Gopi

Former Member
0 Kudos

Hi,

U can declare one more variable 'Marked' in ur internal table along with the data fields as

data : begin of itab occurs 0,

marked(1) type c,

vbeln type vbak-vbeln,

erdat type vbak-erdat,

end of itab.

Now after creating the table control on ur screen, u need to place ur fields over that, for that u will be selecting dictionary/program fields window, if u select program fields, there u can see all the three fields of itab. In that pop up u can see a tab 'copy as', there u have 3 options like Text, Chkb, Radb. Check the Chkb for 'marked' field of itab. Then this field (marked) of itab comes as a check box on the screen.

-Satya Priya