100% found this document useful (1 vote)
464 views3 pages

Implementation of SAP Logon User Exit SUSR0001

This document provides instructions for creating a user exit enhancement project in TCODE CMOD to display a popup message when logging into an SAP system. The steps are: 1. Create a new project in CMOD called ZENH 2. Assign the SUSR0001 enhancement to the project 3. Double click on the EXIT_SAPLSUSF_001 function exit 4. Double click on a new include ZXUSRU01 5. Paste code to call a popup message into the include and activate the function exit 6. Activate the ZENH project. Test by logging out and back in to see the popup message.

Uploaded by

Anil Maurya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
464 views3 pages

Implementation of SAP Logon User Exit SUSR0001

This document provides instructions for creating a user exit enhancement project in TCODE CMOD to display a popup message when logging into an SAP system. The steps are: 1. Create a new project in CMOD called ZENH 2. Assign the SUSR0001 enhancement to the project 3. Double click on the EXIT_SAPLSUSF_001 function exit 4. Double click on a new include ZXUSRU01 5. Paste code to call a popup message into the include and activate the function exit 6. Activate the ZENH project. Test by logging out and back in to see the popup message.

Uploaded by

Anil Maurya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

1. Go to TCODE CMOD.

Enter project name starting with z and press enter or


click on create button.My project name is ZENH.

2. Press Enhancement assignments button in the application toolbar.

3. We will reach at enhancement screen.Enter SUSR0001 in the enhancement


column and hit enter.

4. Go to Components window by clicking on Components button in application


toolbar.
5. Now in Components window we can see the function modules listed.In our
case only on Function exit EXIT_SAPLSUSF_001 is listed.Double click on this
exit

6. Following source code should be there.Double click on include ZXUSRU01.

7. Double click on include.We will get a warning message.

8. Never mind press enter.It will ask to create the include.Press yes and choose
package and give workbench request.

9. Paste following code and activate the function exit.Go back to CMOD and
activate the ZENH project also.
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
titel = 'Welcome to SAP !'
txt1 = 'Have A Nice Day'
txt2 = 'Keep Rocking' *
TXT3 = ' ' *
TXT4 = ' '.
10. Now we can test try logout and login.
11. You will see the output as shown in below image.

Note:This user exit does not trigger on rfc logon to sap system.
Hope you liked this post.please share your thoughts...

You might also like