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

regarding module pool

Former Member
0 Likes
622

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
Read only

Former Member
0 Likes
585

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
Read only

Former Member
0 Likes
586

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.

Read only

Former Member
0 Likes
585

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

Read only

Former Member
0 Likes
585

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

Read only

Former Member
0 Likes
585

the