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

Tabstrip and Table Control.

Former Member
0 Likes
718

Hello,

In my requirement I have to use a tab strip control with 6 tabs, each tab representing a document. Now for a particular entity if any of the document is not present, then that tab will not be visible. On each tab there will be a table control and the table control will be filled dynamically at run time based upon the number of records received from the IDOC at run time. Any help regarding this requirement will be greatly appreciated. If anybody having some good document on tab strip control or table control implementation it would be of great help.

Thanks.

1 ACCEPTED SOLUTION

Hello,

In my requirement I have to use a tab strip control with 6 tabs, each tab representing a document. Now for a particular entity if any of the document is not present, then that tab will not be visible. On each tab there will be a table control and the table control will be filled dynamically at run time based upon the number of records received from the IDOC at run time. Any help regarding this requirement will be greatly appreciated. If anybody having some good document on tab strip control or table control implementation it would be of great help.

Thanks.

4 REPLIES 4
Read only

Former Member
0 Likes
695

In PBO of Tabstrip screen

MODULE SET_TABS.

IF <CONDITION>.

LOOP AT SCREEN.

IF SCREEN-NAME = 'TAB_NAME'.

SCREEN-INVISIBLE = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

ENDIF.

Read only

Former Member
0 Likes
695

Anything else u want to know?

Read only

Former Member
0 Likes
695

Hi,

If the perticular entity is not available then pass a dummy subscreen instead of a subscreen where the tabel control you are displaying currently

regards

Ramchander Rao.K