‎2015 Apr 09 8:44 AM
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??
‎2015 Apr 09 9:16 AM
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.
‎2015 Apr 09 10:31 AM
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
‎2015 Apr 09 11:21 AM
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
‎2015 Apr 09 11:37 AM
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.