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

regarding sap authorizations

Former Member
0 Likes
962

hi all

is there anyway to limit the users access to only their own batch input sessions in tcode sm35 using sap authorizations.

thanks in advance

mohan

hi all

is there anyway to limit the users access to only their own batch input sessions in tcode sm35 using sap authorizations.

thanks in advance

mohan

5 REPLIES 5
Read only

Former Member
0 Likes
877

See the authorization objects

S_BTCH_ADM Background Processing: Background Administrator

S_BTCH_NAM Background Processing: Background User Name

S_BTCH_JOB Background Processing: Operations on Background Jobs

S_BDC_MONI Batch Input Authorizations

-Kiran

*Please reward useful answers

Read only

Former Member
0 Likes
877

hi,

check this

Checking User Authorizations in your ABAP Program

How to set Authorization to an ABAP Programs?

Much of the data in an R/3 system has to be protected so that unauthorized users cannot access it. Therefore the appropriate authorization is required before a user can carry out certain actions in the system. When you log on to the R/3 system, the system checks in the user master record to see which transactions you are authorized to use. An authorization check is implemented for every sensitive transaction.

If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.

This means you have to allocate an authorization object in the definition of the transaction.

For example:

program an AUTHORITY-CHECK.

AUTHORITY-CHECK OBJECT <authorization object>

ID <authority field 1> FIELD <field value 1>.

ID <authority field 2> FIELD <field value 2>.

...

ID <authority-field n> FIELD <field value n>.

The OBJECT parameter specifies the authorization object.

The ID parameter specifies an authorization field (in the authorization object).

The FIELD parameter specifies a value for the authorization field.

The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields.

Use T/Code SE80 to Create Authorization object.

if u find it useful mark the points

Regards,

Naveen

Read only

former_member181966
Active Contributor
0 Likes
877

There’s a way in CUA ( Central User Administration )to restrict the user session. Its not on top of my head at the moment.

Thanks

Saquib

Read only

0 Likes
877

This method does not force, but it does suggest.


set parameter id 'MPN' field '*'.
set parameter id 'BDC_CREATOR' field sy-uname.
call transaction 'SM35'.

You can set these parameters ids in the user profile.

Regards,

Rich Heilman

Read only

0 Likes
877

You can create a variant transaction for SM35 adn prefill the user id in display only mode. Give that to the users instead of SM35.