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: 

Change Input to output problem via Call transaction

Former Member
0 Kudos

hi all,

I am having Report and Module Pool Program. From report i am using call Transaction to fill up the screen inputs in Module pool program.

I successfully loaded values to MPP screen but in *PBO i can't make the input to output only. If i set the that the value i sent is not shown, empty output field i get...*

Help me..

Florian.

3 REPLIES 3

Former Member
0 Kudos

U can do this in the screen layout by describing the field output only in the MPP.

Former Member
0 Kudos

hi,

My reqirement is to change the layout at runtime only. cause in some other option i have to make it as input...

I want to do that in my coding.. help me.

Florian.

0 Kudos

Hi Florian,

You can try with following statement

LOOP AT SCREEN.

IF SCREEN-NAME = <field_name>.

SCREEN-INPUT = 0.

ENDIF.

MODIFY SCREEN.

ENDLOOP.

The above code will allow the field to display value but will not allow the user to enter value into it.

Regards,

Kunjal