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: 

regarding module pool

Former Member
0 Kudos

hai,

i created a table control wizard and if the values from the internal tables are placed in the table control means then

my table control has to change to editable mode.pls tell me the solution as soon as possible.

with regards,

R.Dhineshraj.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

To make a particular field editable, use,

PROCESS AFTER INPUT.

FIELD <field_name> MODULE <pai_module_name>.

to make more than one field editable, use,

PROCESS AFTER INPUT.

CHAIN.

FIELD: <field1>,

<field2>,

<field3>.

MODULE <pai_module_name>.

ENDCHAIN.

4 REPLIES 4

Former Member
0 Kudos

hi,

To make a particular field editable, use,

PROCESS AFTER INPUT.

FIELD <field_name> MODULE <pai_module_name>.

to make more than one field editable, use,

PROCESS AFTER INPUT.

CHAIN.

FIELD: <field1>,

<field2>,

<field3>.

MODULE <pai_module_name>.

ENDCHAIN.

Former Member
0 Kudos

Hi

U need to create a module to change the attribute of SCREEN table in the loop of PBO:

PROCESS PBO.

  LOOP AT ITAB WITH CONTROL T_CTRL.
    MODULE LOOP_SCREEN.
  ENDLOOP.

MODULE LOOP_SCREEN.
  CHECK NOT ITAB IS INITIAL.
  LOOP AT SCREEN.
    IF SCREEN-INPUT = 0.
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
ENDMODULE.

Max

Former Member
0 Kudos

hi,

In PBO

loop at itab with control tc.

module <screen module>

endloop.

In module screen moudle.

loop at screen.

make all the fields i.e.

screen-input = 1.

modify screen.

endloop.

Rgds.,

subash

Former Member
0 Kudos

the