cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Authorization check by user

Former Member
0 Likes
4,482

I need to do determine if a user is authorized to execute a certain transaction. What is the easiest way to implement this. I have been looking at ABAP statement AUTHORITY-CHECK but am not sure if it will work for me.

Accepted Solutions (1)

Accepted Solutions (1)

Pawan_Kesari
Active Contributor
0 Likes

You can use Authority object S_TCODE to check if user has authority to execute particular transaction. Pass transaction code in id 'TCD'

AUTHORITY-CHECK OBJECT 'S_TCODE' FOR USER user_name ID 'TCD' FIELD 'ME23N'.

Answers (2)

Answers (2)

GauthamV
Active Contributor
0 Likes

Use transaction SUIM.

You can check Authorizations for user to specific transactions here.

Former Member
0 Likes

Hi

Try to run transaction S_BCE_68001426 (report RSUSR010)

Max