cancel
Showing results for 
Search instead for 
Did you mean: 

Access Disclaimer for SAP systems

Former Member
0 Kudos

Hi ,

I need to create an access disclaimer which should be displayed on our SAP logon screen and also when a user enters user id and password , the similar access disclaimer should pop-up and user has to click on ok to let him in SAP .

I have this similar system for our different boxes but doesn`t have this on our new system .

Can someone tell me method to create login screen access disclaimer as well as pop-up login company disclaimer .

Many thanks in advance .

Harsh

Accepted Solutions (1)

Accepted Solutions (1)

MichaelTe
Contributor
0 Kudos

Hello Harsh,

you could use User-Exit SUSR0001.

Call transaction 'smod' and enter 'SUSR0001' check the box 'Components' and press 'Display'.

Double click on function module 'EXIT_SAPLSUSF_001'.

Something like the following should appear:

FUNCTION EXIT_SAPLSUSF_001.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"----------------------------------------------------------------------


  INCLUDE ZXUSRU01.


ENDFUNCTION.

Double click on 'ZXUSRU01'.

Now you are in an include where you can implement anything you want.

*&---------------------------------------------------------------------*
*&  Include           ZXUSRU01
*&---------------------------------------------------------------------*
MESSAGE s001(00) with 'Willkommen im SAP System der rubinion AG'.

Regards, Michael

Answers (1)

Answers (1)

former_member185954
Active Contributor
0 Kudos

Hello Harsh,

Check this link:

http://searchsap.techtarget.com/tip/0,289483,sid21_gci810811,00.html#

Regards,

Siddhesh

Former Member
0 Kudos

Thanks for the link howvever i have tried that. I was able to create a login screen disclaimer but comes as Infomation on the top and then the access disclaimer . On other systems i have this without information written in the header . Second - This page does not provide information regarding creating a post login access pop up disclaimer .