‎2006 Nov 24 11:11 AM
How do we maintain Authorization for 1. Reports 2. Scripts 3.Smartforms
Thanks in Advance
Krish...
‎2006 Nov 24 11:30 AM
For a report, you can not directly have a auth object. But you can create a TC and assign an authorization object ot it.
Goto se93. create a TC for your program.
you will see a field called Authorization Object. Link your auth object here.
the auth check will be done automatically.
Pls reward points if you find this useful.
‎2006 Nov 24 11:13 AM
u can set
using authorization groups as well as authorization objects
Message was edited by:
Naresh Reddy
‎2006 Nov 24 11:26 AM
‎2006 Nov 24 11:30 AM
For a report, you can not directly have a auth object. But you can create a TC and assign an authorization object ot it.
Goto se93. create a TC for your program.
you will see a field called Authorization Object. Link your auth object here.
the auth check will be done automatically.
Pls reward points if you find this useful.
‎2006 Nov 24 12:39 PM
Hi,
This the way how, we will create an authorization in our program, It might be REPORT, Script or Smart form.
First ask the Functional guy, For Authorization object or Ask, on which ( Means, like company code, plant) you want to put the authorization.
If it is not there, Quality people will reject it.
form auth_check.
authority-check object 'S_TCODE'
id 'TCD'
field c_tcode.
if sy-subrc ne 0.
message e000 with text-078 c_tcode.
message shown as 'You are not authorised to use
transaction Z_BILLING_TRANSMIT
endif.
endform. " auth_check
Thanks
Manju.
Helpful, Reward points,