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: 

Error message comes in POPUP - module pool

Former Member
0 Kudos

Hi MASTERS,

am asking a silly question please bear with me. its a module pool program.

i have displayed several ERROR messages in my PROGRAMS and it displayed the message in status bar.

NOW :

I am trying to display the same ERROR message and it displayes in POP-UP box where it says EXIT.

How can i avoid this pop-up?

these are my message types that i have tried all of them come in a pop-up box.

MESSAGE E074(zfiex) .

MESSAGE E074(zfiex) WITH CCIHT_IAL-EVTIME.

MESSAGE Captured time cannot be in the future' TYPE 'E'.

Thanks in advance,

pasala.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Try to output message type I but display Like E. Ex:


MESSAGE I074(zfiex) WITH CCIHT_IAL-EVTIME display like 'E'.

Keep in mind that you output an error message so please do according to your report to avoid error.

Regards,

Edited by: Thien M. Pham on Sep 17, 2010 4:16 PM

5 REPLIES 5

Former Member
0 Kudos

Hi,

Try to output message type I but display Like E. Ex:


MESSAGE I074(zfiex) WITH CCIHT_IAL-EVTIME display like 'E'.

Keep in mind that you output an error message so please do according to your report to avoid error.

Regards,

Edited by: Thien M. Pham on Sep 17, 2010 4:16 PM

0 Kudos

if the the Validation fails their should not be any further action TILL the user changes the time.

the below message allows the user to save eventhough the validation failed.

MESSAGE I074(zfiex) WITH CCIHT_IAL-EVTIME display like 'E'

0 Kudos

well then use a type E Message. Type E messages are not coming in popups until you coded "display like I".

0 Kudos

Click Alt+F12 in SAP initial screen.Select options - In options below messages,you have

check boxes to display different types of messages with dialog box.

Select the check box for dialog box with error messages and click ok.

Former Member
0 Kudos

helpful answers thank you.