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

Hi what is Authorization Object in SE93 tcode

Former Member
0 Likes
3,980

Hi can anybody tell me

what is the Authorization Object filed in the SE93 Transaction code.

what exactly it will take.

thanks in advance

KP

Hi can anybody tell me

what is the Authorization Object filed in the SE93 Transaction code.

what exactly it will take.

thanks in advance

KP

4 REPLIES 4
Read only

Former Member
0 Likes
2,022

Hi,

An authorization object combines up to 10 authorization fields, which are checked using the AND connective.

Authorizations are checked against objects in the system. Authorization objects enable complex checks (linked to several conditions) of an authorization. For the authorization check to be successful, the user must pass the check for each field contained in the object.

Regards

Kannaiah

Read only

Former Member
0 Likes
2,022

HI,

I dont know what you are actually expecting. Due you want to check if a user has authorization to SE93.

AUTHORITY-CHECK OBJECT 'P_TCODE'

ID 'TCD' FIELD 'SE93'.

if sy-subrc <> 0.

message error.

exit.

endif.

Regards

Subramanian

Read only

former_member194669
Active Contributor
0 Likes
2,022

Hi,

This check only takes place when calls are made via START TRANSACTION and via the entry "/n<T.code>".

The check is not performed for CALL TRANSACTION or for parameter transactions

aRs

Read only

Former Member
0 Likes
2,022

Hi,

try this:

AUTHORITY-CHECK OBJECT 'S_TCODE'

ID 'TCD' FIELD '__________'.

*

AUTHORITY-CHECK OBJECT 'S_DEVELOP'

ID 'DEVCLASS' FIELD '__________'

ID 'OBJTYPE' FIELD '__________' "TRAN

ID 'OBJNAME' FIELD '__________'

ID 'P_GROUP' FIELD '__________'

ID 'ACTVT' FIELD '__________'.

Regards, Dieter