Error handling in SAP login page

venkatesan

New Member
Hi Guys,

How to handle exception handling in login page.
Ex: I want to login into SAP but im entering wrong username or password.

Here i want to inform to the user which is username and password is incorrect.
 

Sukesh Kumaru

Active Member
Hello,
Try to capture the error message provided by the sap application it will display at left bottom. Analyze it(read text with ocr) and design the process accordingly.
 

VJR

Well-Known Member
Hi venkatesan,

- Create a small Form of a dialog box size in any programming language editor such that you can create an .exe out of that form (eg, Visual Basic or .Net)
Have a message with a label on that form such as "Invalid Username/Password".
You can also have a line of code to show a message box when that Form opens/loads which will also show the OK button
OR you can just have a Form with a close button and a label on it.
- When an incorrect uname/pwd is entered then use the 'Start Process' action to call this exe which will display this screen to the user.
In this case the user will have to press ok (or the close button) so you need to handle anything else in your process accordingly.
Also you can think of a timed Message Box which will automatically close the dialog after a few seconds.
 
Top