Application Development and Automation 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: 
Read only

Table control

Former Member
0 Likes
485

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
Read only

gopi_narendra
Active Contributor
0 Likes
454

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

Regards

- Gopi

Read only

0 Likes
454

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

Read only

0 Likes
454

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

Read only

0 Likes
454

Hi,

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

Thanks

Ram

Read only

0 Likes
454

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

Regards

- Gopi