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: 

For a call screen when displaying error message screen become disable

styrolution_accenture
Participant
0 Kudos

Hi,

For a call screen when i am giving a error message all the other fields are getting disabled and by enter also they are not getting enabled.

can you please suggest how to get this in enable mode with the error message.

the error message is given if we are trying to save the duplicate record.

Please suggest <removed by moderator>.

BR,

Rajesh

Edited by: Thomas Zloch on Nov 18, 2010 4:18 PM - priority normalized

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Try:

message 'blabla' type 'S' DISPLAY LIKE 'E'.

Edit.

But you should validate the key fields before even pressing the SAVE button. Use CHAIN..ENDCHAIN for the key fields.

2 REPLIES 2

Former Member
0 Kudos

Try:

message 'blabla' type 'S' DISPLAY LIKE 'E'.

Edit.

But you should validate the key fields before even pressing the SAVE button. Use CHAIN..ENDCHAIN for the key fields.

syed_ibrahim5
Active Participant
0 Kudos

hi,

try to use keyword FIELD and validate that field.


FIELD : ITAB-WAERS MODULE VALIDATION_100.
"in the validation in PAI display your message
IF ITAB-WAERS = 'INR' OR ITAB-WAERS = ''.
    MESSAGE 'Please Enter a Foreign Currency' TYPE 'E'.
ENDIF.

with regards,

syed