‎2010 Dec 28 6:29 AM
Hi,
I am creating a screen which needs 5 table controls. But only three is working. even though data is present, table control doesnt display the data. Is't anything like table controls are limited with only 3. Please help.
‎2010 Dec 28 6:36 AM
‎2010 Dec 28 6:36 AM
‎2010 Dec 28 6:43 AM
Is't anything like table controls are limited with only 3Is it table control or tab strip.? You have restrictions on tab strip to only 3 tabs
‎2010 Dec 28 6:52 AM
hi,
Its Table control... I tried making it four, even then the fourth table control is not displaying the data. The itab which is linked to this table control has entries.
‎2010 Dec 28 7:05 AM
Check the Table Control for Screen XXXXX - Definitions. May be your are refreshing or clearing it somewhere. Debug inside the TC code.
A sample PBO code for TC.
*&---------------------------------------------------------------------*
*&Table Control for Screen 3000 - Definitions
*&---------------------------------------------------------------------*
MODULE tc_mailhist_init OUTPUT.
IF g_tc_mailhist_copied IS INITIAL.
SELECT *
FROM zmailhist
INTO CORRESPONDING FIELDS OF TABLE g_tc_mailhist_itab
WHERE vbeln IN s_vbeln AND
kunnr IN s_kunnr AND
erdat IN s_fkdat.
g_tc_mailhist_copied = 'X'.
REFRESH CONTROL 'TC_MAILHIST' FROM SCREEN '3000'.
ENDIF.
ENDMODULE. "tc_mailhist_init OUTPUT
*----------------------------------------------------------------------*
* MODULE tc_mailhist_move OUTPUT
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
MODULE tc_mailhist_move OUTPUT.
MOVE-CORRESPONDING g_tc_mailhist_wa TO zmailhist.
ENDMODULE. "tc_mailhist_move OUTPUT
‎2011 Jun 21 2:20 PM