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
549

I created a tabstrip ,there i have created 3 subscreens and 1 table control..how to write the code for creating the table control part??

4 REPLIES 4
Read only

Former Member
0 Likes
514

hi sayan,

did you search or did you take tutorials on working with table controls?

if you specify exact problem then it will be easy to comment on it.

Read only

nishantbansal91
Active Contributor
0 Likes
514

Hi Sayan,

If you are created Table control at the main screen than you should write logic in the main screen itself.

If you defined the table control at the subscreen level than you have to define your table control to Subscreen level.

Thanks and Regards,

Nishant

Read only

nishantbansal91
Active Contributor
0 Likes
514

Hi Sayan,

If you are created Table control at the main screen than you should write logic in the main screen itself.

If you defined the table control at the subscreen level than you have to define your table control to Subscreen level.

Thanks and Regards,

Nishant

Read only

former_member185116
Active Participant
0 Likes
514

hi ,

first create a table control in screen painter and name it (say TBCL),

then in the program declare it as

CONTROLS :  TBCL TYPE TABLEVIEW USING SCREEN 100.

*logic in PBO

Loop with CONTROL TBCL.

endloop.

*logic in PAI

Loop with CONTROL TBCL.

module to display required data in table control

endloop.