cancel
Showing results for 
Search instead for 
Did you mean: 

500 Internal Server Error replaced by customised message

0 Kudos

Hello All,

We get the standard SAP error message once an end user reaches timeout on a WD application. How can we show him a user friendly customised message? Where can we replace it? Any hints/links will be highly appreciated.

Br,

MD

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Doshi,

We can achieve this developing a custom component which handles all the exceptions in webdynpro.

I mentioned few links below which gives an idea how to create a custom webdynpro messages to user.

http://help.sap.com/erp2005_ehp_03/helpdata/EN/72/1d6526263ff24995016a152705eab2/frameset.htm

http://help.sap.com/erp2005_ehp_03/helpdata/EN/72/1d6526263ff24995016a152705eab2/frameset.htm

http://help.sap.com/erp2005_ehp_03/helpdata/EN/72/1d6526263ff24995016a152705eab2/frameset.htm

Thanks

Krishna

Answers (1)

Answers (1)

Former Member
0 Kudos

Maulin,

I am not a java developerd, but I think you can modify web.xml for the app, trap the error and point to a custom jsp. Some thing like this.

<error-page>

<error-code>400</error-code>

<location>/custom.jsp</location>

</error-page>

-RK