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

Error Message popup

Former Member
0 Likes
1,510

Hi all,

I am getting Error message in the form of popup.

i should get the same error message in the status bar as "I" and "W" message types.

how to achieve this.

helpful suggestions will sure be rewarded.

regards

samarendra

10 REPLIES 10
Read only

Former Member
0 Likes
1,165

hi,

Replace 'E' with 'I' or 'W' to achieve that ...

Regards,

Santosh

Read only

Former Member
0 Likes
1,165

Hi,

You can do as below:


message 'Error information' type 'E'.

Thanks,

Sriram Ponna.

Read only

0 Likes
1,165

Dear sriram,

There is logic given down after the condition further.

when i have given the message as "W" or "I' then it is not displaying the message and it is continuing to the further logic.

where in which there are success messages also.

regards

samarendra

Read only

Former Member
0 Likes
1,165

hi check this program..

REPORT ztest message-id zmsd.

data: v_test type i value '10'.

if v_test ne 12.

message s000 with 'this is not matched'.

endif.

or

REPORT ztest message-id zmsd.

data: v_test type i value '10'.

if v_test ne 12.

message i000 with 'this is working'.

endif.

regards,

venkat.

Read only

Former Member
0 Likes
1,165

hi ,

if u specify the message type 'E' it will stops u other wise it will continue ....if u give the type as 'I' or 'W'...

regards,

venkat.

Read only

Former Member
0 Likes
1,165

In your GUI on top right you see personalization options ...you can reach it through ALT+F12...now in this pop up choose options and further select options tab..now unclick dialog box at error message...

Read only

0 Likes
1,165

Dear amiya

i have gone through the solution that u have given.

this did not help me because all the message options are not checked.

regards

samarendra

Read only

Former Member
0 Likes
1,165

hi,

you can try

message 'Error Message' type 'E' display like 'I' or 'W' whatever you want.

Read only

0 Likes
1,165

Dear Ravi,

this also has not helped me because it is showing the popup again i.e., warning message is also behaving like error message.

Earlier the warning message or information message used to show in status bar.

now it is showing as popup and stopping further processing logic

regards

samarendra

Read only

Former Member
0 Likes
1,165

Hi,

Message types are E - Error

I - Information

W - Warning

S - Success

If you use Error or Success Message types will shows on the status bar

If you use Information or Warning Message types will give popup windows

Error will not allow the futher action untill correct it but information or warning press enter it will allows to continue. You can write different types.

Eg: Message 'Type 1' type 'E'.

Message E0001(Zxxx) with 'Type 2'.

In 2nd Eg: Message class should be there.

Thanks

Ganesh