Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Any Function Module to Authenticate SAP User?

Former Member
0 Likes
1,436

Hi Experts,

I have a web service that need to authenticate SAP user before the user call the web service.

So, is there any function module to authenticate the SAP user?

Thank you.

Regards,

Alexender

4 REPLIES 4
Read only

Former Member
0 Likes
912

Hi, Check with the below one.

BAPI_USER_EXISTENCE_CHECK

This function has a export parameter 'RETURN' which lets you know if the user exits or not in SAP.

If RETURN-ID = '01' and RETURN-NUMBER = '088', user exits in SAP system.

If RETURN-ID = '01' and RETURN-NUMBER = '124' , user does not exists in SAP.

Read only

0 Likes
912

Hi Vijay,

Thanks for your prompt reply.

I will test it out.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
912

First read Authentication for Web Services

Regards,

Raymond

Read only

0 Likes
912

Hi Raymond,

Really appreciate for your reply.

Thank you.