<?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: find authorization obj in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444134#M827138</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are looking for objects that are checked for any transaction in the abap code then you have to search for authority-check statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the program RPR_ABAP_SOURCE_SCAN in sa38 as it could be handy while checking the authority-check statement in a package. You have to enter authority-check in the Find string &amp;amp; the program(report) name or package name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2008 03:55:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-22T03:55:25Z</dc:date>
    <item>
      <title>find authorization obj</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444133#M827137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; i want to check what objects are used in tcode su01 in abap code. i go to tcode se38 n then enter program name SAPMSUU0 for su01. when i click on display button, i get abap code like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT SAPMSUU0 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Berechtigungsprüfung 'S_TCODE' für Transaktionen &amp;lt;&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;'SU01' oder 'SU01_NAV'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF SY-TCODE &amp;lt;&amp;gt; 'SU01' AND SY-TCODE &amp;lt;&amp;gt; 'SU01_NAV'.        " note 566144&lt;/P&gt;&lt;P&gt;  CLEAR: SY-MSGID, SY-MSGTY, SY-MSGNO,&lt;/P&gt;&lt;P&gt;         SY-MSGV1, SY-MSGV2, SY-MSGV3, SY-MSGV4.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'AUTHORITY_CHECK_TCODE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;         TCODE   = 'SU01'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OK      = 0&lt;/P&gt;&lt;P&gt;         NOT_OK  = 1&lt;/P&gt;&lt;P&gt;         OTHERS  = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    IF SY-MSGID IS INITIAL OR SY-MSGTY IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE E172(00) WITH 'SU01'. " Keine Berechtigung für Transaktion&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SUSR_USER_MAINT_WITH_DIALOG'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ERROR_WRITING_TO_DB = 1&lt;/P&gt;&lt;P&gt;          OTHERS              = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in this code where i can find object names. please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 03:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444133#M827137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T03:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: find authorization obj</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444134#M827138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are looking for objects that are checked for any transaction in the abap code then you have to search for authority-check statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the program RPR_ABAP_SOURCE_SCAN in sa38 as it could be handy while checking the authority-check statement in a package. You have to enter authority-check in the Find string &amp;amp; the program(report) name or package name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 03:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444134#M827138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T03:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: find authorization obj</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444135#M827139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jai, thanks for reply.&lt;/P&gt;&lt;P&gt;but still i didnt get it. like earlier wen i do this procedure that time  i get some "include" lines with one include line as authority check as commented. when i double click on that include line then i get another screen with all the objects for su01 there like s_user_aut, s_user_pro, s_user_grp etc.. but now i dont kno wat happn i didnt got that screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-authorization-obj/m-p/3444135#M827139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T04:11:07Z</dc:date>
    </item>
  </channel>
</rss>

