‎2008 Mar 28 11:54 AM
Hi!
In SAP, there is a table, called AGR_1251.
In SE16, I give the OBJECT field, the S_TCODE value.
Now I can see that there are a lot of combination, to give a transaction code to an authority object within the table's low and high columns.
I mean, if I'm interested in checking the "XD01" transaction, there could be many possible cases which makes the "XD01" transaction correct, like
- XD01
- XD00 - XD02
- XD0*
- XD*
- XD00 - XD99
- *
All of these intervals, and * values are good for the XD01 transaction.
I would like to find a function module, which can tell me those entries, where the XD01 transaction fit. Is there one?
Thank you
Tamá
‎2008 Mar 28 12:01 PM
Hi,
If a user doesnot have authorisation,put su53 after typing the tcode example XD01 .It will display the list of object invloved to provide authorisation.
see the TABLES: tobj, tobct,tobjt.
‎2008 Mar 28 12:01 PM
Hi,
If a user doesnot have authorisation,put su53 after typing the tcode example XD01 .It will display the list of object invloved to provide authorisation.
see the TABLES: tobj, tobct,tobjt.
‎2008 Mar 28 12:07 PM
I would like to create a report, which could provide the users, who has the given transaction codes. Multiple transaction codes can be entered of course, in the selection..
‎2008 Mar 28 2:29 PM
Hi Tamas,
1. One way of doing this is :
a) select the required records from this table
with your conditions
and OBJECT = 'S_TCODE'.
b) Here u will get some records.
c) take another RANGE variable
d) loop at the above internal table found in (a),
and populate the range variable with LOW and HIGH,
and also sign = 'I' and option = 'BT'.
e) then using the variable on screen,
u can check
If variable IN Range.
*--- means right to tcode.
endif.
regards,
amit m.