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: 

me21 screen requires editable.

Former Member
0 Kudos

Hi

i maintained User exit mm06E005 for Purchase order creation using ME21. i am facing a problem. i maintained some validations for Po creations. if any wrong data enetered by the user while creation of po using me21. my user exit zxm06u42 will throw an error. in that case my screen will be in display mode. i need screen to be editable to correct wrong entries.

regards

sun

2 REPLIES 2

Former Member
0 Kudos

Hi Sun,

In this case then you may need to change the type of messge from E to W or need to think of some other way.

As the screen fields you are validating, if you want in dispaly or editable mode, then you need to validate it in the CHAIN ..ENDCHAIN in the screen. Then only the field will be in the editable mode.

Regards,

Atish

Former Member
0 Kudos

while creating the screen ,you need to write the logic in PAI.

PROCESS AFTER INPUT.

CHAIN.

FIELD : field1,

field2.

MODULE field1.

MODULE field2.

ENDCHAIN.

if you write the code like,it will give error message but all fields are editable.

Thanks

Seshu