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: 

about table control in TAB STRIP CONTROL

Former Member
0 Kudos
79

hi experts:

I use TAB STRIP CONTROL to change the sub screen,one subscreen I use table control,but when I click the button,it comes out a problem,

ShrtText

Table view "TAB1 " does not exist in screen 0001.

" The screen 0001 of program "Z1FIFIXP" specified in the CONTROLS

declaration of the table view "TAB1 " contains no

description for this element."

I don't know how to resolve this problem,can you help me ? thanks a lot.

1 ACCEPTED SOLUTION

former_member1245113
Active Contributor
0 Kudos
49

Hi

1) You need to take subscreen on the subscreen areas specified in the tabstrip

in PAI

case ok_code.

when 'TAB1'.

TS-ACTIVE_TAB = 'TAB1'.

when 'TAB2'.

TS-ACTIVE_TAB = 'TAB2'.

..

..

..

endcase.

In TOP include you need to declare them properly

ex --> tc type tableview using screen 100.

ts type tabstrip. etc

for further info please go through the key word documention

or go to SE80 -> Utilities-> * Examples* ---> Control Examples

Regards

Ramchander Rao.K

1 REPLY 1

former_member1245113
Active Contributor
0 Kudos
50

Hi

1) You need to take subscreen on the subscreen areas specified in the tabstrip

in PAI

case ok_code.

when 'TAB1'.

TS-ACTIVE_TAB = 'TAB1'.

when 'TAB2'.

TS-ACTIVE_TAB = 'TAB2'.

..

..

..

endcase.

In TOP include you need to declare them properly

ex --> tc type tableview using screen 100.

ts type tabstrip. etc

for further info please go through the key word documention

or go to SE80 -> Utilities-> * Examples* ---> Control Examples

Regards

Ramchander Rao.K