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: 

control hide the value

Former Member
0 Kudos

Hi,

Table control enter the value and enter key press value are hide .

reason for advise me.

thanks,

Hariharalingam.S

1 REPLY 1

Former Member
0 Kudos

have u modified your internal table in PAI from screen & passed that internal table content back to the screen in PBO ?

for example if you need to show mara table in table control then

Pls check if you written following code in PBO.


  LOOP AT   internal_table 
       INTO workarea
       WITH CONTROL table_control_name
       CURSOR table_control_name-CURRENT_LINE.
    MODULE MOVE.
  ENDLOOP.

in MODULE MOVE.


 MOVE-CORRESPONDING workarea TO mara.

Pls check if you written following code in PAI.


  LOOP AT internal_table.
    CHAIN.
      FIELD MARA-MATNR.
      FIELD MARA-ERNAM.
      FIELD MARA-MTART.
      MODULE MODIFY ON CHAIN-REQUEST.
    ENDCHAIN.
  ENDLOOP.

in module MODIFY


  MOVE-CORRESPONDING mara TO workarea .
  MODIFY internal_table 
    FROM workarea
    INDEX table_control_name-current_line.

put a break point on modify command & check if internal table is getting modified or not.