<?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: Authorization Objects Validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166957#M753422</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jessicab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That statement might again have been "application specific". Some applications will check the authority of the calling user (if told to do so).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, okay, your statement is not incorrect, it is "specific" to TADM10 (transport administration?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2007 23:18:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-07T23:18:34Z</dc:date>
    <item>
      <title>Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166949#M753414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi security experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question regarding authorization objects and transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When SAP checks for user access to transactions, are the authorization objects verified against the action the are related to or as independent authorization object not linked to transaction?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is the logic flow followed by SAP in order to grant user access to certain transaction? Could you please recommend me any document or link where I could find such info?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many many thanks in advance. Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Imanol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 21:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166949#M753414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T21:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166950#M753415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Imanol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A basic overview of the auth process for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. User logs in, is authenticated via user ID &amp;amp; password&lt;/P&gt;&lt;P&gt;2. The data from the profiles in their user master is loaded into their auth buffer.&lt;/P&gt;&lt;P&gt;3. User executes a transaction e.g. FB01&lt;/P&gt;&lt;P&gt;4. A kernel level check is performed against the user buffer for auth object S_TCODE, value = FB01&lt;/P&gt;&lt;P&gt;5. Any auth object checks assigned at transaction start vie SE93 are also evaluated at this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. If successful SAP starts to go through the ABAP code of the program assigned to the transaction.&lt;/P&gt;&lt;P&gt;6. When the program hits an AUTHORITY-CHECK statement in the code, it evaluates the user buffer for values which meet the check.  The AUTHORITY-CHECK references an auth object and one or more values in that object.  For FB01 one of the checks would be F_BKPF_BUK: Activity=01, Company code=&amp;lt;whatever&amp;gt; to check that you have authorisation to create in company code &amp;lt;whatever&amp;gt;&lt;/P&gt;&lt;P&gt;7. If you have the relevant auths then it proceeds through the code, doing whatever it needs to do.&lt;/P&gt;&lt;P&gt;8. If you don't have the relevant auths then it will tell you that you don't have authorisation or kick you out etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see from the process above, the transaction merely is the frontend to a program and it is the code in the program &amp;amp; the path that you take through the program that determines the AUTHORITY-CHECKS that need to be satisfied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SU24 we maintain the auth objects that are needed to run a particular transaction, however there is no dynamic link between the two.  This is because the auth checks will differ based on config, how you use the transaction etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.  If you haven't done already, it's worth tracking down Authorisations Made Easy and the SAP Security Guide vol 1-3.  I don't have links to these unfortunately.  Another very good resource for this is course ADM940 which covers this in great detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 21:45:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166950#M753415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T21:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166951#M753416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Imanol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I have put some information about Authorizations per definition (would like to send you the link but I have it locally on my laptop). anyways, here it goes and hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' A person can log on to a client of an SAP system if they know the&lt;/P&gt;&lt;P&gt;user/password combination for a user master record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SAP system, there is an authorization check every time a transaction&lt;/P&gt;&lt;P&gt;is called. If a user attempts to start a transaction for which he or she is not&lt;/P&gt;&lt;P&gt;authorized, the system rejects the user with an appropriate error message.&lt;/P&gt;&lt;P&gt;If the user starts a transaction for which he or she has authorization, the system&lt;/P&gt;&lt;P&gt;displays the initial screen of this transaction. Depending on the transaction&lt;/P&gt;&lt;P&gt;called, the user enters data and performs actions on this screen. Additional&lt;/P&gt;&lt;P&gt;authorization checks are made for data and actions that are to be protected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Users are assigned authorizations using roles. The authorizations are&lt;/P&gt;&lt;P&gt;combined in roles and the roles are entered in the user master record.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About Authorizations Objects:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Actions and the access to data are protected by authorization objects in the&lt;/P&gt;&lt;P&gt;SAP system. The authorization objects are delivered by SAP and are in SAP&lt;/P&gt;&lt;P&gt;systems. To provide a better overview, authorization objects are divided into&lt;/P&gt;&lt;P&gt;various object classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Authorization objects allow complex checks that involve multiple conditions&lt;/P&gt;&lt;P&gt;that allow a user to perform an action. The conditions are specified in&lt;/P&gt;&lt;P&gt;authorization fields for the authorization objects and are AND linked for the&lt;/P&gt;&lt;P&gt;check. Authorization objects and their fields have descriptive and technical&lt;/P&gt;&lt;P&gt;names. In the example in the figure, the authorization object &amp;amp;#147;User master&lt;/P&gt;&lt;P&gt;maintenance: User Groups&amp;amp;#148; (technical name: S_USER_GRP) contains the two&lt;/P&gt;&lt;P&gt;fields &amp;amp;#147;Activity&amp;amp;#148; (technical name: ACTVT) and &amp;amp;#147;User Group in User Master&lt;/P&gt;&lt;P&gt;Record&amp;amp;#148; (technical name: CLASS). The authorization object S_USER_GRP&lt;/P&gt;&lt;P&gt;protects the user master record. An authorization object can include up to ten&lt;/P&gt;&lt;P&gt;authorization fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An authorization is always associated with exactly one authorization&lt;/P&gt;&lt;P&gt;object and contains the value for the fields for the authorization object. An&lt;/P&gt;&lt;P&gt;authorization is a permission to perform a certain action in the SAP system.&lt;/P&gt;&lt;P&gt;The action is defined on the basis of the values for the individual fields&lt;/P&gt;&lt;P&gt;of an authorization object. For example: Authorization B in the figure for&lt;/P&gt;&lt;P&gt;authorization object S_USER_GRP allows the display of all user master&lt;/P&gt;&lt;P&gt;records that are not assigned to the user group SUPER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There can be multiple authorizations for one authorization object. Some&lt;/P&gt;&lt;P&gt;authorizations are delivered by SAP, but the majority are created specifically&lt;/P&gt;&lt;P&gt;for the customer&amp;amp;#146;s requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When a user logs on to a client of an SAP system, his or her authorizations are&lt;/P&gt;&lt;P&gt;loaded in the user context. The user context is in the user buffer (in the main&lt;/P&gt;&lt;P&gt;memory) of the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user calls a transaction, the system checks whether the user has an&lt;/P&gt;&lt;P&gt;authorization in the user context that allows him or her to call the selected&lt;/P&gt;&lt;P&gt;transaction. Authorization checks use the authorizations in the user context.&lt;/P&gt;&lt;P&gt;If the user is assigned new authorizations, he or she must log on to the SAP&lt;/P&gt;&lt;P&gt;system again to use these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the authorization check for calling a transaction was successful, the system&lt;/P&gt;&lt;P&gt;displays the initial screen of the transaction. Depending on the transaction,&lt;/P&gt;&lt;P&gt;the user can create data or select actions. When the user completes his or&lt;/P&gt;&lt;P&gt;her dialog step, the data is sent to the dispatcher, which passes it to a dialog&lt;/P&gt;&lt;P&gt;work process for processing. Authority checks (AUTHORITY-CHECK) that&lt;/P&gt;&lt;P&gt;are checked during runtime in the work process are built into the coding&lt;/P&gt;&lt;P&gt;by the ABAP developers for data and actions that are to be protected. If&lt;/P&gt;&lt;P&gt;the user context contains all required authorizations for the checks, the&lt;/P&gt;&lt;P&gt;data and actions are processed and the user receives the next screen. If one&lt;/P&gt;&lt;P&gt;authorization is missing, the data and actions are not processed and the user&lt;/P&gt;&lt;P&gt;receives a message that his or her authorizations are insufficient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All authorizations are permissions. There are no authorizations for&lt;/P&gt;&lt;P&gt;prohibiting. Everything that is not explicitly allowed is forbidden.'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 21:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166951#M753416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T21:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166952#M753417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt; 8. If you don't have the relevant auths then it will tell you that you &lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; don't have authorisation or kick you out etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Strictly speaking, depending on the reason for the check being unsuccessfull, a return-code will be set. Depending on how the program reacts to that return code, the user will experience that which the program is designed to do. That might be an &amp;lt;b&amp;gt;e&amp;lt;/b&amp;gt;rror, it might be a &amp;lt;b&amp;gt;w&amp;lt;/b&amp;gt;arning, or in extreme cases... they get kicked out &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 20:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166952#M753417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T20:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166953#M753418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;  All authorizations are permissions. There are no authorizations for&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;  prohibiting. Everything that is not explicitly allowed is forbidden.' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is strictly speaking not correct either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many optional authorizations which can be used to grant permissions &amp;lt;b&amp;gt;only if&amp;lt;/b&amp;gt; the authority has prior been protected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are also authorizations which can be used to "override" if excluded, or "underride" if included in permissions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirements for authority can also be surpressed based on specific contexts (for example, the calling transaction specific context "No check" in SU24, or, IF SY-UNAME checks which can sometimes be found in "private" programs).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bar only some system specific authorities and config dependencies, when a program is initialised and executed, it is very powerfull and will do most things unless it is stopped or guided in it's path by (for example) authority-checks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 21:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166953#M753418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T21:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166954#M753419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did say  "A basic overview of the auth concept" &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 22:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166954#M753419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T22:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166955#M753420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, I am quite surprised that Imanol considered this question answerable... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh well... for those who want to go a step further looking under the "bonnet", take a look at &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2916045"&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I never got to the bottom of it (though SAP made several improvements since, if your system is patched) and it was difficult to find support for it (externally)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;ppt_programmer&amp;gt;If you dig your own hole, then you don't...&amp;lt;/ppt_programmer&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 23:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166955#M753420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T23:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166956#M753421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt; All authorizations are permissions. There are no authorizations for&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; prohibiting. Everything that is not explicitly allowed is forbidden.' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;That is strictly speaking not correct either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Julius, then I guess you have to email SAP to correct them.&lt;/P&gt;&lt;P&gt;I took that information from the Netweaver certification manual TADM10 &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 23:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166956#M753421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T23:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166957#M753422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jessicab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That statement might again have been "application specific". Some applications will check the authority of the calling user (if told to do so).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, okay, your statement is not incorrect, it is "specific" to TADM10 (transport administration?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 23:18:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166957#M753422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T23:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166958#M753423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TADM10 and TADM12 are the official training manuals for the NetWeaver Technology certification program, so I dont think it is application-specific. In any case, maybe it's technology-specific since the statement is valid for all the Netweaver Technology &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TADM stands for Technology Administration, but you were close &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a good weekend.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 23:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166958#M753423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T23:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166959#M753424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will enjoy the weekend, thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards and enjoy the weekend too.&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: FYI - the (parts of) text you have copied in that exact form &amp;lt;i&amp;gt;might&amp;lt;/i&amp;gt; even have a copyright protection on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Julius Bussche&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 23:51:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166959#M753424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T23:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166960#M753425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello jessicab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A slightly off-topic question - I have been gathering information on which courses to do next year, but had not thought of TADM10/12. Can you recommend them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Dec 2007 19:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166960#M753425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-09T19:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166961#M753426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Julius,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sure, if you want to get the Netweaver Certification you can take them. Those courses are part of the SAP Academy. Additionally, for the certification you'll probably need 1 specific-database course (DB2, Oracle, SQL, etc).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have more information here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www50.sap.com/useducation/curriculum/curriculum-rid=292.asp" target="test_blank"&gt;http://www50.sap.com/useducation/curriculum/curriculum-rid=292.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jessica.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 17:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166961#M753426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T17:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization Objects Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166962#M753427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jessica.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 17:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-validation/m-p/3166962#M753427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T17:44:07Z</dc:date>
    </item>
  </channel>
</rss>

