2009 Aug 06 3:33 AM
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.
2009 Aug 06 4:23 AM
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
2009 Aug 06 4:23 AM
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