cancel
Showing results for 
Search instead for 
Did you mean: 

SAP user logon screen upon clicking the log off button

Former Member
0 Kudos

Hi ,

Request your help/guidance for the below requirement.

Requirement :

Our custom web dynpro apllication has a Log off button.

On clicking the Log off button, SAP user logon screen has to be displayed for the user to enter his credentials and to login again.

NOTE : I have used Exit plug on click of log off button but this just exits the current application.

Regards

Manjula

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184958
Active Participant
0 Kudos

Hi,

In that window exit button there is a option for parameter define one parameter while click on exit button pass the log on url to that parameter. like below,

data: l_ref_zwdr_test_exit_plug type ref to ig_W_WINDOWP .
   l_ref_Zwdr_test_exit_plug =   wd_this->get_W_WINDOWP_ctr( ).
*  l_ref_wdr_test_exit_plug->fire_exit_plg(
*    url = '{WDR_TEST_MSG_MANAGER_00}'
*  ).
   l_ref_Zwdr_test_exit_plug->fire_OB_EXIT_plg(
     url = 'http://www.google.de/' "Window ob exit plug url is defind in window ob
   ).

Hope you understood clearly.

Regards,

John.

Former Member
0 Kudos

Hi John,

Thanks for your reply!

I have already tried this option by passing the WDA URL(This is my custom WDA url).Also I have set the Log off page in 'Error pages' of  SICF node.

I am getting the logon on page to enter SAP User credentials.

But after entering the correct credentials it doesnt log me on to the application that I have mentioned in the URL.

Regards

Manjula