<?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 authority check procedure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206015#M1204354</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, can any one provide me with the procedure to create and use the Authority check .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2009 08:51:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-24T08:51:11Z</dc:date>
    <item>
      <title>authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206015#M1204354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, can any one provide me with the procedure to create and use the Authority check .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 08:51:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206015#M1204354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T08:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206016#M1204355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;SEARCH&lt;/STRONG&gt; in SCN you have lot of posts on the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 08:52:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206016#M1204355</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-24T08:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206017#M1204356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement checks whether authorization is entered in the user master record of the current user or the user specified in user for the authorization object entered in the field auth_obj, and whether this authorization is sufficient for the request specified in the statement. A flat character-type field that contains the name of an authorization object is expected for auth_obj. Without the addition FOR USER, the authorization of the current user is checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS carr TYPE spfli-carrid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;  AUTHORITY-CHECK OBJECT 'S_CARRID' &lt;/P&gt;&lt;P&gt;    ID 'CARRID' FIELD carr &lt;/P&gt;&lt;P&gt;    ID 'ACTVT'  FIELD '03'. &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;    MESSAGE 'No authorization' TYPE 'E'. &lt;/P&gt;&lt;P&gt;  ENDIF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jyothi CH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 09:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206017#M1204356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T09:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206018#M1204357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Authorisation checks will be used in programs to verify the user accessibily to the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the below example, &lt;STRONG&gt;ZSECOBJ&lt;/STRONG&gt; is a securitization object created &amp;amp; maintained by a Basis person.&lt;/P&gt;&lt;P&gt;the &lt;STRONG&gt;ACTVT&lt;/STRONG&gt; is an identification field under the Object.&lt;/P&gt;&lt;P&gt;Finally the Field value &lt;STRONG&gt;16&lt;/STRONG&gt; is Execution Access Value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having this authorizations profile, a user can be able to execute the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;initialization.                                                                                
authority-check object 'ZSECOBJ'       
            id 'ACTVT' field '16'.          
  if sy-subrc ne 0.                         
    message "No Authorisation for execution".                       
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 09:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206018#M1204357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206019#M1204358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can search for &lt;STRONG&gt;authority check procedure&lt;/STRONG&gt; in SCN.&lt;/P&gt;&lt;P&gt;There are various threads for this .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use search option first like...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&amp;amp;query=create" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&amp;amp;query=create&lt;/A&gt;&lt;EM&gt;and&lt;/EM&gt;use&lt;EM&gt;the&lt;/EM&gt;Authority&lt;EM&gt;check&lt;/EM&gt;&amp;amp;adv=false&amp;amp;sortby=cm_rnd_rankvalue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so from next time&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SEARCH IN SCN BEFORE POSTING&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sachin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sachin sharma on Feb 24, 2009 2:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 09:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206019#M1204358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T09:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206020#M1204359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my question is answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 09:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206020#M1204359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T09:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: authority check procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206021#M1204360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Goto SU21, to create an authorization object in any authorization class. It will ask you to specify the authorization fields do that by selecting a data element from search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the following link to create authority check procedure, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-rburg.de/teaching/sap_r3/ABAP4/authorit.htm" target="test_blank"&gt;http://www.sts.tu-rburg.de/teaching/sap_r3/ABAP4/authorit.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 09:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authority-check-procedure/m-p/5206021#M1204360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T09:24:42Z</dc:date>
    </item>
  </channel>
</rss>

