<?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 When to create new authorization objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534511#M1656922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am learning SAP Security.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one question , what is the necessity of creating new authroization field and object , when SAP gives a huge list of objects /fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any reason behind like, whenever a customised transaction is created, a new authorization object or filed has to be created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rekharaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Feb 2012 12:58:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-10T12:58:17Z</dc:date>
    <item>
      <title>When to create new authorization objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534511#M1656922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am learning SAP Security.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one question , what is the necessity of creating new authroization field and object , when SAP gives a huge list of objects /fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any reason behind like, whenever a customised transaction is created, a new authorization object or filed has to be created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rekharaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 12:58:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534511#M1656922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-10T12:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: When to create new authorization objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534512#M1656923</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;I recommend to use them when a standard SAP object does not provide the functionality that you require.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One example would be where you have a custom transaction with fields or functionality which do not relate to the standard authorisation schema.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the other side, if you have a development which is related to posting an FI document and is controlled via company code then you can pick from standard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 13:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534512#M1656923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-10T13:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: When to create new authorization objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534513#M1656924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 13:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534513#M1656924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-10T13:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: When to create new authorization objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534514#M1656925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trick is to find not only a standard authorization object with the same field you are looking for, but an object already assigned to the users with those roles with the same semantic for all it's fields - so that you can simply reuse the existing concept which is also assigned to the sets of users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Often you will find "base" function modules and classes you can use to do all that work for you. Just call them at the correct location in the code and dont forget to check the return code and react to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use BAPI APIs to access or process data, then many of them make these same semantically correct checks "out of the box".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 22:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-to-create-new-authorization-objects/m-p/8534514#M1656925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-10T22:04:43Z</dc:date>
    </item>
  </channel>
</rss>

