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

Screen Exit?

Former Member
0 Likes
473

Hi all,

i added a field to work order enhancement screen using screen exit. it is a date field, i kept a validation to it in a function exit.

example:

IF user_date  GE present_date.

MOVE user_date TO lwa.

ELSE.

message e032(xxx).

ENDIF.

i do not have any problem till here.

issue is i want the in-put option to be in edit mode when error occurs so that, i could change the date and try to save again

Regards

satish chandra.

3 REPLIES 3
Read only

gouravkumar64
Active Contributor
0 Likes
434

Hi,

I am coming to only message part.

Can you try to change the messages like this line

message 'your error message'  type 'I' DISPLAY LIKE 'E'.

Try it.

Thanks

Gourav.

Read only

0 Likes
434

Thanks Gaurav.

whether the message is type E, W or I... result is same here.

Regards.