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

STC1_FULLSCREEN_TABLE_CONTROL

Former Member
0 Likes
761

Hi,

I am using function STC1_FULLSCREEN_TABLE_CONTROL like this:

CALL FUNCTION 'STC1_FULLSCREEN_TABLE_CONTROL'
    EXPORTING
      header       = p_table
      tabname      = p_table
      display_only = p_displ
      endless      = 'X'
      no_button    = space
      X_START                 = 5
      Y_START                 = 5
      X_END                     = 150
      Y_END                     = 50
    IMPORTING
      okcode       = w_okcode
    TABLES
      table        = <itab>
      modif_table  = <ntab>
    EXCEPTIONS
      OTHERS       = 1.

The problem si that output table control ignore my custom position, it is always in the lef top corner and too small.

Thanks for all tips and advices.

2 REPLIES 2
Read only

kim_ternstrm
Explorer
0 Likes
521

I know this is a very old post. But I just found this FM. Try to use  STC1_POPUP_WITH_TABLE_CONTROL instead

Read only

0 Likes
521

Hello,

thank you for you reply.

With STC1_POPUP_WITH_TABLE_CONTROL you can set the X Y of popup window which contains subscreen with Table Control, but unfortunely the size of this subscreen is not influenced by these parametrs and is exactly the same size like in STC1_FULLSCREEN_TABLE_CONTROL, that means very small.

But it is very good tool for maintanence of small tables(3-5 columns).

Regards,

Jakub