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: 

Table control

Former Member
0 Kudos
92

Hi,

In a Table control i need to include one column for Checkbox. I see many examples were they the selection bar Checkbox(its implicit). I want to have separate Column for explicit Checkbox.

Could anyone pls help me with an example?

Pls help

Thanks

Ram

5 REPLIES 5

gopi_narendra
Active Contributor
0 Kudos
61

Directly place a check box control layout of the table control.

Regards

- Gopi

0 Kudos
61

Hi Gopi,

Thanks for the reply.

Then how to get the Check Box events in PAI?

Can you pls help me with example

thanks

Ram

0 Kudos
61

define a structure with the table control columns

begin of itab occurs 0,

chk type c,

.....tc columns

end of itab.

now in PAI, u ll have to capture the screen fields value to itab

and in PBO

move the itab values to the screen fields.

Regards

- Gopi

0 Kudos
61

Hi,

So the Screen fields Will have the values from Table control..including for Check box(Selected or not) ?

Thanks

Ram

0 Kudos
61

Yes u will have to include the check box also in the table control field columns

Regards

- Gopi