<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: All Authorisation Objects used in a Transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458302#M1929635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have in fact faced this issue during upgrade, where new authority checks were implemented as part of upgrade. Introduction of new authority check statements actually create disaster and end user will not have the authorization. RS_ABAP_SOURCE_SCAN was used to at least compare what all new statements have been introduced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Identifying which tcodes they will impact is something which is till open&lt;SPAN __jive_emoticon_name="cry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/74/images/emoticons/cry.gif"&gt;&lt;/SPAN&gt;&lt;SPAN __jive_emoticon_name="cry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/74/images/emoticons/cry.gif"&gt;&lt;/SPAN&gt; I believe a tool here will be of awesome help to determine which tcode does this change impacts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jan 2016 14:01:59 GMT</pubDate>
    <dc:creator>nabheetscn</dc:creator>
    <dc:date>2016-01-26T14:01:59Z</dc:date>
    <item>
      <title>All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458296#M1929629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello mates,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i take a look at the Transaction SU24, i see a list of Transactions and "all" Authorisation Objects related to them if they would be maintained by the developer.&lt;/P&gt;&lt;P&gt;But not all Authorisation objects are maintained there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to write a Report, which is able to find all Authorisation Objects related to a Transaction, so i can easily compare with the entries in the SU24. It would be a huge effort to search for all the Authority Checks in a bunch of coding and assign them to a Transaction in SU24 manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried searching for the string 'AUTHORITY-CHECK' via rs_abap_source_scan, but i only get the object+ line reference in which the Authority check takes place, not the Transaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me a how i can do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Emre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 12:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458296#M1929629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-25T12:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458297#M1929630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Emre,&lt;/P&gt;&lt;P&gt;Have you tried looking at the USOBT and USOBX tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;The USOBT table lists the auth objects which are associated with the Tcode (name field) while the USOBX lists the object which are maintained and have auth checks happen. The ones marked Y in OKFLAG have default auth check happen while ones with X are maintained through su24 for auth check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you get your report going,&lt;/P&gt;&lt;P&gt;Geoffery&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 13:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458297#M1929630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-25T13:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458298#M1929631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Emre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a transaction , with CALL FUNCTION statements different functions ( so different main programs )&lt;/P&gt;&lt;P&gt;can be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it means a transaction is not related to only one program and called functions can change by the time,&lt;/P&gt;&lt;P&gt;and also functions / objects can be used dynamically ,&lt;/P&gt;&lt;P&gt;so u can not directly find all authorization objects belong to a program / transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend you to use transaction ST01 to trace used authority objects by that transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this method,&lt;/P&gt;&lt;P&gt;u can't have a program directly giving you all authorization objects u need&lt;/P&gt;&lt;P&gt;and u have to run every transaction u need once,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but anyway it can be helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Bulent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 15:03:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458298#M1929631</guid>
      <dc:creator>bbalci</dc:creator>
      <dc:date>2016-01-25T15:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458299#M1929632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USOB* tables are the tables maintained by SU24.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I fear the OP wants the actual whole list of authority check a transaction can call. This is hardly realist as any dynamic call has to be "manually" analyzed those dynamic call can be generated by some Customizing, original conception of transaction, even some BAdI/Enhancement, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 15:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458299#M1929632</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-01-25T15:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458300#M1929633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you guys for the answers. I see, that my Intention is hard to realize in combination with transactions. To bad.&lt;/P&gt;&lt;P&gt;If i can't find a way to do this, i will only search within programs or packages to compile a list of every Authority Check used in them, so i get an overview. Am i right, that i can use&amp;nbsp; the program RS_ABAP_SOURCE_SCAN for this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Emre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 08:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458300#M1929633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-26T08:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458301#M1929634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Emre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I used program RS_ABAP_SOURCE_SCAN&amp;nbsp; many times as background job for different requirements,&amp;nbsp;&amp;nbsp; it can give u an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a nice day.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 08:15:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458301#M1929634</guid>
      <dc:creator>bbalci</dc:creator>
      <dc:date>2016-01-26T08:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458302#M1929635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have in fact faced this issue during upgrade, where new authority checks were implemented as part of upgrade. Introduction of new authority check statements actually create disaster and end user will not have the authorization. RS_ABAP_SOURCE_SCAN was used to at least compare what all new statements have been introduced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Identifying which tcodes they will impact is something which is till open&lt;SPAN __jive_emoticon_name="cry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/74/images/emoticons/cry.gif"&gt;&lt;/SPAN&gt;&lt;SPAN __jive_emoticon_name="cry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/74/images/emoticons/cry.gif"&gt;&lt;/SPAN&gt; I believe a tool here will be of awesome help to determine which tcode does this change impacts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 14:01:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458302#M1929635</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2016-01-26T14:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458303#M1929636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps rephrased this question could be asked (and answered) in Security. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 14:36:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458303#M1929636</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-01-26T14:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: All Authorisation Objects used in a Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458304#M1929637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the advice as always..Posted the question.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/3855169"&gt;http://scn.sap.com/thread/3855169&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/all-authorisation-objects-used-in-a-transaction/m-p/11458304#M1929637</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2016-01-26T15:01:27Z</dc:date>
    </item>
  </channel>
</rss>

