cancel
Showing results for 
Search instead for 
Did you mean: 

How to display error or success message in ITS application? Help!

gopalkrishna_baliga
Participant
0 Kudos

Hi Experts,

I have a report that I have web enabled it via ITS. My report has a selection screen and a ALV table.

I have validate date range field in the selection screen On invalid date entry I have to display error message.

How to do this?

In my ABAP code I have handled the message using message ID and number. It is working fine in ABAP code but does not work in ITS web application.

What I have to do to get the message display?

Thanks

Gopal

Accepted Solutions (0)

Answers (1)

Answers (1)

athavanraja
Active Contributor
0 Kudos

you dont have to do anything special. it should work the same way as it is in SAPGUI environment.

<i> It is working fine in ABAP code but does not work in ITS web application.</i>

what happens here? it dosent check the error and continues the program execution? or program execution stops but error message is not shown?

Regards

Raja

gopalkrishna_baliga
Participant
0 Kudos

Success and error message are showning at the footer of the page. This is ok.

Bot Any information message is not displayed as popup window.

Thanks

Gopal

athavanraja
Active Contributor
0 Kudos

message type I also works. you can debug it and see whether the program flow reaches the message I statement

Regards

Raja

gopalkrishna_baliga
Participant
0 Kudos

Hi,

My code is like this:

INITIALIZATION.

*Pull the sold to and ship to party

select sold_to

ship_to

from YCOP_SOLD_SHIP INTO TABLE i_soldship.

if SY-SUBRC EQ 0.

MESSAGE e000.

endif.

This is firing correctly in ABAP SE80 with a POP-UP window. But in ITS i am not getting any POP-UP and it directly exits.

I think I have to setup some service parameter.

Please help me!

Thanks

Gopal

athavanraja
Active Contributor
0 Kudos

i have tested and both message i and E works.

by the way message E wont bring up pop up, it will display at the bottom of the screen.

Regards

Raja

gopalkrishna_baliga
Participant
0 Kudos

E pops up if called in INITIALIZATION.

I have not got any solution yet.

What about information message? That also I am not able to show as popup.

Thanks

Gopal

manu_bhai
Explorer
0 Kudos

Hi Gopal,

I am also having exactly the same problem...

Messages are not appearing as a popup. but in the same window. with no option to go back.

we have recently upgraded the system in ECC6. it was working fine with the older virson.

Can you please help??

Former Member
0 Kudos

In the service (SICF) try set ~POPUPS 1.