<?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: Doubt in Authorization in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267812#M492312</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;1. what is the use of Authorization-checks: it's to check if the user can or can't do something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every user has a profile, the profile is constituted by authorization objects and they determine the area where the user can work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In the below code what is OBJECT , ID and FIELD..What does it means..Tell me with a simple example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OBJECT = The name of authorization object
ID           = The name of the field of the object
FIELD     = the value to be checked&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;For example the object F_BKPF_BUK is to define for wich company code a user can work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This object has the followin fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUKRS = Company Code &lt;/P&gt;&lt;P&gt;ACTVT  = The activity code (what a user can do)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you want to know if a user can post a document for the company code AAAA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
     ID 'BUKRS' FIELD 'AAAA'
     ID 'ACTVT'  FIELD '01'.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
----trigger message error displaying the user can't post the document for company code AAAA
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see all objects by trx SU21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see the profile/role by trx PFGC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;3. Is there any other type of Authorization Checks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'S_CARRID'&lt;/P&gt;&lt;P&gt;ID 'CARRID' FIELD pa_carr&lt;/P&gt;&lt;P&gt;ID 'ACTVT' FIELD '03'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 May 2007 07:52:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-29T07:52:25Z</dc:date>
    <item>
      <title>Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267806#M492306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am very new to this topic.I have a piece of code with me...So tell me in a simple way what does it means....My doubts are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. what is the use of Authorization-checks&lt;/P&gt;&lt;P&gt;2. In the below code what is OBJECT , ID and FIELD..What does it means..Tell me with a simple example...&lt;/P&gt;&lt;P&gt;3. Is there any other type of Authorization Checks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'S_CARRID'&lt;/P&gt;&lt;P&gt;                  ID 'CARRID' FIELD pa_carr&lt;/P&gt;&lt;P&gt;                  ID 'ACTVT' FIELD '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proper answers Will Be Rewarded..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267806#M492306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267807#M492307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/5c/deaa74d3d411d3970a0000e82de14a/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/5c/deaa74d3d411d3970a0000e82de14a/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/security/authority/authhome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/security/authority/authhome.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267807#M492307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267808#M492308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AUTHORITY-CHECK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form &lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT object &lt;/P&gt;&lt;P&gt;    ID name1  FIELD f1 &lt;/P&gt;&lt;P&gt;    ID name2  FIELD f2 &lt;/P&gt;&lt;P&gt;    ... &lt;/P&gt;&lt;P&gt;    ID name10 FIELD f10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Explanation of IDs: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object &lt;/P&gt;&lt;P&gt;Field which contains the name of the object for which the authorization is to be checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name1 ... &lt;/P&gt;&lt;P&gt;Fields which contain the names of the &lt;/P&gt;&lt;P&gt;name10 &lt;/P&gt;&lt;P&gt;authorization fields defined in the object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f1 ... &lt;/P&gt;&lt;P&gt;Fields which contain the values for which the &lt;/P&gt;&lt;P&gt;f10 &lt;/P&gt;&lt;P&gt;authorization is to be checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK checks for one object whether the user has an authorization that contains all values of f (see SAP authorization concept). &lt;/P&gt;&lt;P&gt;You must specify all authorizations for an object and a also a value for each ID (or DUMMY). &lt;/P&gt;&lt;P&gt;The system checks the values for the IDs by AND-ing them together, i.e. all values must be part of an authorization assigned to the user. &lt;/P&gt;&lt;P&gt;If a user has several authorizations for an object, the values are OR-ed together. This means that if the CHECK finds all the specified values in one authorization, the user can proceed. Only if none of the authorizations for a user contains all the required values is the user rejected. &lt;/P&gt;&lt;P&gt;If the return code value in SY-SUBRC is 0, the user has the required authorization and may continue. &lt;/P&gt;&lt;P&gt;The return code value changes according to the different error scenarios. The return code values have the following meaning: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 &lt;/P&gt;&lt;P&gt;User has no authorization in the SAP System for such an action. If necessary, change the user master record. &lt;/P&gt;&lt;P&gt;8 &lt;/P&gt;&lt;P&gt;Too many parameters (fields, values). Maximum allowed is 10. &lt;/P&gt;&lt;P&gt;12 &lt;/P&gt;&lt;P&gt;Specified object not maintained in the user master record. &lt;/P&gt;&lt;P&gt;16 &lt;/P&gt;&lt;P&gt;No profile entered in the user master record. &lt;/P&gt;&lt;P&gt;24 &lt;/P&gt;&lt;P&gt;The field names of the check call do not match those of an authorization. Either the authorization or the call is incorrect. &lt;/P&gt;&lt;P&gt;28 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;32 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;36 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the return code value is 8 or 24, inform the person responsible for the program. If the return code value is 4, 12, 16 or 24, consult your system administrator if you think you should have the relevant authorization. In the case of errors 28 to 36, contact SAP because authorizations have probably been destroyed. &lt;/P&gt;&lt;P&gt;Individual authorizations are assigned to users in their respective user profiles, i.e. they are grouped together in profiles which are stored in the user master record. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Instead of ID name FIELD f, you can also write ID name DUMMY. This means that no check is performed for the field concerned. &lt;/P&gt;&lt;P&gt;The check can only be performed on CHAR fields. All other field types result in 'unauthorized'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Check whether the user is authorized for a particular plant. In this case, the following authorization object applies: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table OBJ: Definition of authorization object &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;M_EINF_WRK &lt;/P&gt;&lt;P&gt;   ACTVT &lt;/P&gt;&lt;P&gt;   WERKS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, M_EINF_WRK is the object name, whilst ACTVT and WERKS are authorization fields. For example, a user with the authorizations &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;M_EINF_WRK_BERECH1 &lt;/P&gt;&lt;P&gt;   ACTVT 01-03 &lt;/P&gt;&lt;P&gt;   WERKS 0001-0003 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can display and change plants within the Purchasing and Materials Management areas. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Such a user would thus pass the checks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'M_EINF_WRK' &lt;/P&gt;&lt;P&gt;    ID 'WERKS' FIELD '0002' &lt;/P&gt;&lt;P&gt;    ID 'ACTVT' FIELD '02'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'M_EINF_WRK' &lt;/P&gt;&lt;P&gt;    ID 'WERKS' DUMMY &lt;/P&gt;&lt;P&gt;    ID 'ACTVT' FIELD '01': &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but would fail the check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'M_EINF_WRK' &lt;/P&gt;&lt;P&gt;    ID 'WERKS' FIELD '0005' &lt;/P&gt;&lt;P&gt;    ID 'ACTVT' FIELD '04'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To suppress unnecessary authorization checks or to carry out checks before the user has entered all the values, use DUMMY - as in this example. You can confirm the authorization later with another AUTHORITY-CHECK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267808#M492308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267809#M492309</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; Thanks..Can U Give me a simple example also..So that i can understand the concept simply..,,,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267809#M492309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267810#M492310</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;What does the OBJECT Stands for...Where we are using this keyword actually..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:49:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267810#M492310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267811#M492311</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;The Authorization checks are used to ensure that the user has proper authorizations.&lt;/P&gt;&lt;P&gt;e.g a developer can only use a particular transation if he / she has proper authorizations.&lt;/P&gt;&lt;P&gt;This can either be display(03), create(01), change(02) authorizations. There can be many more but the main are only these three.&lt;/P&gt;&lt;P&gt;Each authorization has an authorization object. each object has field for which authorizations can be given.&lt;/P&gt;&lt;P&gt;In the e.g that you have specified: For the field : pa_carr you only have display authorizations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another example :&lt;/P&gt;&lt;P&gt;To check the authorization of the user of an ABAP program, use the AUTHORITY-CHECK statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT '&amp;lt;object&amp;gt;'&lt;/P&gt;&lt;P&gt;                        ID '&amp;lt;name1&amp;gt;' FIELD &amp;lt;f1&amp;gt; &lt;/P&gt;&lt;P&gt;                        ID '&amp;lt;name2&amp;gt;' FIELD &amp;lt;f2&amp;gt; &lt;/P&gt;&lt;P&gt;                            .............&lt;/P&gt;&lt;P&gt;                        ID '&amp;lt;name10&amp;gt;' FIELD &amp;lt;f10&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;object&amp;gt; is the name of the object that you want to check. You must list the names (&amp;lt;name1&amp;gt;, &amp;lt;name2&amp;gt; ...) of all authorization fields that occur in &amp;lt;object&amp;gt;. You can enter the values &amp;lt;f 1 &amp;gt;, &amp;lt;f 2 &amp;gt;.... for which the authorization is to be checked either as variables or as literals. The AUTHORITY-CHECK statement checks the user&amp;#146;s profile for the listed object, to see whether the user has authorization for all values of &amp;lt;f&amp;gt;. Then, and only then, is SY-SUBRC set to 0. You can avoid checking a field by replacing FIELD &amp;lt;f&amp;gt; with DUMMY. You can only evaluate the result of the authorization check by checking the contents of SY-SUBRC. For a list of the possible return values and further information, see the keyword documentation for the AUTHORITY-CHECK statement. For further general information about the SAP authorization concept, refer to Users and Authorizations.&lt;/P&gt;&lt;P&gt;This link gives you more explanations&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/AuthIntro.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/AuthIntro.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more detailed explanation please go through these links:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3ba5358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3ba5358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/52/67167f439b11d1896f0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/52/67167f439b11d1896f0000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narayani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267811#M492311</guid>
      <dc:creator>Nkrish</dc:creator>
      <dc:date>2007-05-29T07:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267812#M492312</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;1. what is the use of Authorization-checks: it's to check if the user can or can't do something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every user has a profile, the profile is constituted by authorization objects and they determine the area where the user can work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In the below code what is OBJECT , ID and FIELD..What does it means..Tell me with a simple example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OBJECT = The name of authorization object
ID           = The name of the field of the object
FIELD     = the value to be checked&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;For example the object F_BKPF_BUK is to define for wich company code a user can work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This object has the followin fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUKRS = Company Code &lt;/P&gt;&lt;P&gt;ACTVT  = The activity code (what a user can do)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you want to know if a user can post a document for the company code AAAA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
     ID 'BUKRS' FIELD 'AAAA'
     ID 'ACTVT'  FIELD '01'.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
----trigger message error displaying the user can't post the document for company code AAAA
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see all objects by trx SU21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see the profile/role by trx PFGC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;3. Is there any other type of Authorization Checks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT 'S_CARRID'&lt;/P&gt;&lt;P&gt;ID 'CARRID' FIELD pa_carr&lt;/P&gt;&lt;P&gt;ID 'ACTVT' FIELD '03'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267812#M492312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267813#M492313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Max..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 07:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-authorization/m-p/2267813#M492313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T07:58:37Z</dc:date>
    </item>
  </channel>
</rss>

