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

Module pool programming

Former Member
0 Likes
632

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.

1 ACCEPTED SOLUTION
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
606

The no. of tabstrips is not confined to 3 .

5 REPLIES 5
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
607

The no. of tabstrips is not confined to 3 .

Read only

Former Member
0 Likes
606
Is't anything like table controls are limited with only 3

Is it table control or tab strip.? You have restrictions on tab strip to only 3 tabs

Read only

0 Likes
606

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.

Read only

0 Likes
606

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

Read only

Former Member
0 Likes
606

Resolved