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

Authorisation object

Former Member
0 Likes
575

Hi,

I have requirement in which for particular user has not given authorisation for MIGO transaction.

But he has authorisation for 1 z program in which MIGO is called by call transaction. at that time he is able to go in MIGO.

How i can resolve?

thanks in advance.

1 ACCEPTED SOLUTION
Read only

Pawan_Kesari
Active Contributor
0 Likes
533

before calling the MIGO from Z program perform check on authority object S_TCODE

AUTHORITY-CHECK OBJECT 'S_TCODE' ID 'TCD' FIELD 'MIGO'.

4 REPLIES 4
Read only

former_member156446
Active Contributor
0 Likes
533

you need to check the authorization for migo using authority-check.. key word and them proceed calling or blocking based on authority result

Read only

Former Member
0 Likes
533

As per my knowledge, granting the authority is only the solution.

thanq

Read only

Pawan_Kesari
Active Contributor
0 Likes
534

before calling the MIGO from Z program perform check on authority object S_TCODE

AUTHORITY-CHECK OBJECT 'S_TCODE' ID 'TCD' FIELD 'MIGO'.

Read only

Former Member
0 Likes
533

Create a z-transaction for your z-program, and then take a look at SE97.

For MIGO you can create an entry for your z-transaction and set the "Check Indicator" flag to "Yes".

It is advisable to check the authority in the Z-transaction before you call it => function module AUTHORITY_CHECK_TCODE.

Cheers,

Julius