<?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 Authorization object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954627#M66009</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Do anyone here worked on SU21?. I need to create a report program and provide read-only access to a particular user. How to go about it?. Will this SU21 be of any use?. If yes how to create one?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prompt replies would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tamilarasan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Aug 2005 08:27:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-01T08:27:31Z</dc:date>
    <item>
      <title>Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954627#M66009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Do anyone here worked on SU21?. I need to create a report program and provide read-only access to a particular user. How to go about it?. Will this SU21 be of any use?. If yes how to create one?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prompt replies would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tamilarasan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 08:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954627#M66009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T08:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954628#M66010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program&lt;/P&gt;&lt;P&gt;RSCSAUTH&lt;/P&gt;&lt;P&gt; Maintain/Restore Authorization Groups&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check this table&lt;/P&gt;&lt;P&gt;OBJT&lt;/P&gt;&lt;P&gt; Authorisation objetc table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/tables/tables.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/tables/tables.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can create authorisation object using this program&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.guidancetech.com/people/holland/sap/abap/zzaut002.htm" target="test_blank"&gt;http://www.guidancetech.com/people/holland/sap/abap/zzaut002.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add. Info: &lt;A href="http://www.sapdevelopment.co.uk/security/authority/authority_tcode.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/security/authority/authority_tcode.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Judith Jessie Selvi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 08:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954628#M66010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T08:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954629#M66011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AUTHORITY CHECK is the key word used to check the authorisation the user have.&lt;/P&gt;&lt;P&gt;So you use it for your purpose. goto F1 for more detail.&lt;/P&gt;&lt;P&gt;If still you are not clear tell me.&lt;/P&gt;&lt;P&gt;I will surely post some more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    when 'EXEC'.&lt;/P&gt;&lt;P&gt;      AUTHORITY-CHECK OBJECT 'ASD_0001' ID 'ACTVT' FIELD '03'.&lt;/P&gt;&lt;P&gt;      if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        MESSAGE E626.&lt;/P&gt;&lt;P&gt;        exit.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 08:40:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954629#M66011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T08:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954630#M66012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tamil,&lt;/P&gt;&lt;P&gt;There is another way of doing this. Goto transaction PFCG. Create a role with the read access right for the TCode of the report. Then activate this profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto SU01 and add this role to that user-id who must have this authorization and transport this to PRD. Bingo!! It'll work perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 08:42:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954630#M66012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T08:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954631#M66013</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;If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means you have to allocate an authorization object in the definition of the transaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program an AUTHORITY-CHECK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK OBJECT &amp;lt;authorization object&amp;gt;  &lt;/P&gt;&lt;P&gt;   ID &amp;lt;authority field 1&amp;gt; FIELD &amp;lt;field value 1&amp;gt;.  &lt;/P&gt;&lt;P&gt;   ID &amp;lt;authority field 2&amp;gt; FIELD &amp;lt;field value 2&amp;gt;.  &lt;/P&gt;&lt;P&gt;   ...  &lt;/P&gt;&lt;P&gt;   ID &amp;lt;authority-field n&amp;gt; FIELD &amp;lt;field value n&amp;gt;.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The OBJECT parameter specifies the authorization object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ID parameter specifies an authorization field (in the authorization object). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FIELD parameter specifies a value for the authorization field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 08:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954631#M66013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T08:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954632#M66014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;I need to create a report program and provide read-only access to a particular user.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean by read only access? is it just reading the code? if yes this can be handled with Authorization group (which you see in attributes tab of the program) coupled with S_PROGRAM object .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;OR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it that withthin the report program you have some user entry screen and you wanted to restrict , who can enter values in the screens. then using authorization objects (explained by others) you can achieve the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 09:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-object/m-p/954632#M66014</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-08-01T09:42:25Z</dc:date>
    </item>
  </channel>
</rss>

