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

Input fields not editable after displaying error message in standard T-code

Former Member
0 Likes
1,999

Dear friends,

I am facing problem for the following requirement.

Input fields not editable(LOCKING) after displaying error message for standard T-code EL20.(230 screen)

Actually i am implementing the business logic(for days validation b/w 2 dates) through Implicit Enhancement spot .

after pressing save button .

if i use   message i000(zmsg_utility) with REABLD-GERNR display like 'E'.

it is displaying error message & it is terminating from screen .

if i use   message e000(zmsg_utility) with REABLD-GERNR .

      SET SCREEN SY-DYNNR.

        EXIT.

it is not terminating from current screen.   also cancel , Exit buttons are working.

But the input fields are locking (non editable mode). I tried through CHAIN . ENDCHAIN. but it`s not possible to write this validation code in Standard screen flow logic.

How to achieve this.

<< Removed Urgency >>

Moderator Message: Formulations like "ASAP"  , “Urgent “ and "Please send step by step" are easily interpreted as orders to people who offer help for nothing more but the satisfaction to being helpful.I recommend reading the useful Blog "Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers"  next and first learn the principles of this before asking any more questions

Thanks,

Padmanabha

Message was edited by: Kesavadas Thekkillath

3 REPLIES 3
Read only

former_member491621
Contributor
0 Likes
886

Hi Padmanabha,

You can try using

Message s000(zmsg_utility) with REABLD-GERN.

STOP.

Hope this helps

Had a query on your query.

if i use   message i000(zmsg_utility) with REABLD-GERNR display like 'E'.

it is displaying error message & it is terminating from screen .

Can you please tell me what did you mean by terminating??


Read only

0 Likes
886

LEAVE TO SCREEN SY-DYNNR .  is working. the problem is screen field values are refreshing while going back to the screen.

Read only

Former Member
0 Likes
886

LEAVE TO SCREEN SY-DYNNR .  is working. the problem is screen field values are refreshing while going back to the screen.