<?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: Authorisation grp in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668108#M615845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk the table USR07&lt;/P&gt;&lt;P&gt;and transaction SU53&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2007 13:04:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-20T13:04:48Z</dc:date>
    <item>
      <title>Authorisation grp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668107#M615844</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;In a report tree, we can state the authorisation grp which can access that tree. This auth grp will then be tied to a user role to restrict certain users from accessing the tree. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a custom program to access a custom table which stores these authorisation grp. this program is supposed to check if the user has the authorisation to access the tree. If he/she has then show the tree, if not do not show. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is i'm not really sure which table hold the link between the user role and auth grp. does anyone know how to go abt this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks alot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r3gards,&lt;/P&gt;&lt;P&gt;r3venant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 13:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668107#M615844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T13:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Authorisation grp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668108#M615845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk the table USR07&lt;/P&gt;&lt;P&gt;and transaction SU53&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 13:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668108#M615845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T13:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorisation grp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668109#M615846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why don't you use sap standard and give the authorisation where it's normally done in a role which is maintained in tcode PFCG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you want to check authorisation in abap use the function for that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for I_TCODE you can fill in you're own name. and the field is ofcourse different also &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  authority-check object 'I_TCODE'
                  ID 'TCD' field 'IW32'.
*ads  IF t370a-aktyp = 'V'.
  if sy-subrc = 0.
    f_tcode = 'IW32'.
  ELSE.
    f_tcode = 'IW33'.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 13:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668109#M615846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T13:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Authorisation grp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668110#M615847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi A. de Smidt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;those are auth objects, do u know where the auth grps are stores?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the thing is a they are going to create an FOP to call the tree which needs to be done thru a custom program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the check has to be done in this program to determine which tree to call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;r3venant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 13:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668110#M615847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T13:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Authorisation grp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668111#M615848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but why do you need to know where they are stored.??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have the name and you have the function you get back true or false if it passes the autorisation check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;really sap has provided a lot of functions that can do the work for you &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the example above can also be used for you own created authorization groups and on which values you want to check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        A. de Smidt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 13:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorisation-grp/m-p/2668111#M615848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T13:45:14Z</dc:date>
    </item>
  </channel>
</rss>

