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: 

Leaving the screen at error message

Former Member
0 Kudos

When a error message is coming for a transaction, user is thrown to initial screen of transaction.

But the requirement is that, when error come user should stay on the same screen, so that error can be changed immediately,

how to do this?

4 REPLIES 4

former_member555112
Active Contributor
0 Kudos

Hi,

Incase it is a dialog program and you have put some checks for some fields then you should put the fields in CHAIN-ENDCHAIN.

If this is a report and the user is making some incorrect entries on the selection screen; then after the error message write LEAVE LIST-PROCESSING.

Regards,

Ankur Parab

0 Kudos

Thanks Ankur

krishnendu_laha
Active Contributor
0 Kudos

Hello,

One more suggestion apart from the given one:

you can change the changes the message like:

message s(000) with text DISPLAY LIKE 'E'

so that message will be displayed like error bu will stay on that same screen

Thanks

Former Member
0 Kudos

rtytry