<?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 Inactive Profiles in Object - Table/Fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376594#M1236722</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;Can you help please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to list all the Authorisation objects that have got an activity field of 01 or 02 for a specific role.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have pulled the following report which is fine.&lt;/P&gt;&lt;P&gt;Some of the objects have got more than one profile set up and some are set to inactive.&lt;/P&gt;&lt;P&gt;I would like to find the table and field I need to use to exclude the inactive profiles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what the table I need to use is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  &lt;/P&gt;&lt;P&gt;	AGR_AGRS.MANDT AS [Client],&lt;/P&gt;&lt;P&gt;	AGR_DEFINE.MANDT AS [Client 1],&lt;/P&gt;&lt;P&gt;	AGR_1251.MANDT AS [Client 2],&lt;/P&gt;&lt;P&gt;	AGR_AGRS.AGR_NAME AS [Composite Role],&lt;/P&gt;&lt;P&gt;	AGR_AGRS.CHILD_AGR AS [Single Role],&lt;/P&gt;&lt;P&gt;	AGR_DEFINE.PARENT_AGR AS [Parent Role], &lt;/P&gt;&lt;P&gt;	AGR_1251.AGR_NAME, &lt;/P&gt;&lt;P&gt;	AGR_1251.AUTH, &lt;/P&gt;&lt;P&gt;	AGR_1251.OBJECT, &lt;/P&gt;&lt;P&gt;	AGR_1251.FIELD, &lt;/P&gt;&lt;P&gt;	AGR_1251.LOW, &lt;/P&gt;&lt;P&gt;	AGR_1251.HIGH&lt;/P&gt;&lt;P&gt;FROM tst.AGR_AGRS&lt;/P&gt;&lt;P&gt;	LEFT JOIN tst.AGR_DEFINE &lt;/P&gt;&lt;P&gt;	ON tst.AGR_AGRS.CHILD_AGR = tst.AGR_DEFINE.AGR_NAME  &lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.MANDT  = tst.AGR_DEFINE.MANDT &lt;/P&gt;&lt;P&gt;	LEFT JOIN tst.AGR_1251&lt;/P&gt;&lt;P&gt;	ON tst.AGR_AGRS.CHILD_AGR = tst.AGR_1251.AGR_NAME&lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.MANDT = tst.AGR_1251.MANDT&lt;/P&gt;&lt;P&gt;WHERE &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.MANDT = 150 &lt;/P&gt;&lt;P&gt;	AND (tst.AGR_AGRS.AGR_NAME LIKE 'JB%')&lt;/P&gt;&lt;P&gt;	AND (tst.AGR_DEFINE.AGR_NAME LIKE 'PR%' &lt;/P&gt;&lt;P&gt;	OR tst.AGR_DEFINE.AGR_NAME LIKE 'PX%')&lt;/P&gt;&lt;P&gt;	--AND tst.AGR_AGRS.AGR_NAME LIKE 'JB:%'&lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.AGR_NAME LIKE 'JB:AA:ABSOFT_DISPLAYFC:ALLXXXX'&lt;/P&gt;&lt;P&gt;	--AND OBJECT IN ('M_MRES_BWA','M_MSEG_BMB','M_MSEG_BWA','M_MSEG_BWE','M_MSEG_BWF','M_MSEG_LGO')&lt;/P&gt;&lt;P&gt;	AND FIELD = 'ACTVT' AND (LOW IN ('&lt;STRONG&gt;','01','02') OR HIGH IN ('&lt;/STRONG&gt;','01','02'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDER BY &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.AGR_NAME ASC, &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.CHILD_AGR ASC,&lt;/P&gt;&lt;P&gt;	OBJECT ASC,&lt;/P&gt;&lt;P&gt;	FIELD ASC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Mar 2009 13:36:31 GMT</pubDate>
    <dc:creator>corinne_lofts</dc:creator>
    <dc:date>2009-03-23T13:36:31Z</dc:date>
    <item>
      <title>Inactive Profiles in Object - Table/Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376594#M1236722</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;Can you help please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to list all the Authorisation objects that have got an activity field of 01 or 02 for a specific role.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have pulled the following report which is fine.&lt;/P&gt;&lt;P&gt;Some of the objects have got more than one profile set up and some are set to inactive.&lt;/P&gt;&lt;P&gt;I would like to find the table and field I need to use to exclude the inactive profiles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what the table I need to use is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  &lt;/P&gt;&lt;P&gt;	AGR_AGRS.MANDT AS [Client],&lt;/P&gt;&lt;P&gt;	AGR_DEFINE.MANDT AS [Client 1],&lt;/P&gt;&lt;P&gt;	AGR_1251.MANDT AS [Client 2],&lt;/P&gt;&lt;P&gt;	AGR_AGRS.AGR_NAME AS [Composite Role],&lt;/P&gt;&lt;P&gt;	AGR_AGRS.CHILD_AGR AS [Single Role],&lt;/P&gt;&lt;P&gt;	AGR_DEFINE.PARENT_AGR AS [Parent Role], &lt;/P&gt;&lt;P&gt;	AGR_1251.AGR_NAME, &lt;/P&gt;&lt;P&gt;	AGR_1251.AUTH, &lt;/P&gt;&lt;P&gt;	AGR_1251.OBJECT, &lt;/P&gt;&lt;P&gt;	AGR_1251.FIELD, &lt;/P&gt;&lt;P&gt;	AGR_1251.LOW, &lt;/P&gt;&lt;P&gt;	AGR_1251.HIGH&lt;/P&gt;&lt;P&gt;FROM tst.AGR_AGRS&lt;/P&gt;&lt;P&gt;	LEFT JOIN tst.AGR_DEFINE &lt;/P&gt;&lt;P&gt;	ON tst.AGR_AGRS.CHILD_AGR = tst.AGR_DEFINE.AGR_NAME  &lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.MANDT  = tst.AGR_DEFINE.MANDT &lt;/P&gt;&lt;P&gt;	LEFT JOIN tst.AGR_1251&lt;/P&gt;&lt;P&gt;	ON tst.AGR_AGRS.CHILD_AGR = tst.AGR_1251.AGR_NAME&lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.MANDT = tst.AGR_1251.MANDT&lt;/P&gt;&lt;P&gt;WHERE &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.MANDT = 150 &lt;/P&gt;&lt;P&gt;	AND (tst.AGR_AGRS.AGR_NAME LIKE 'JB%')&lt;/P&gt;&lt;P&gt;	AND (tst.AGR_DEFINE.AGR_NAME LIKE 'PR%' &lt;/P&gt;&lt;P&gt;	OR tst.AGR_DEFINE.AGR_NAME LIKE 'PX%')&lt;/P&gt;&lt;P&gt;	--AND tst.AGR_AGRS.AGR_NAME LIKE 'JB:%'&lt;/P&gt;&lt;P&gt;	AND tst.AGR_AGRS.AGR_NAME LIKE 'JB:AA:ABSOFT_DISPLAYFC:ALLXXXX'&lt;/P&gt;&lt;P&gt;	--AND OBJECT IN ('M_MRES_BWA','M_MSEG_BMB','M_MSEG_BWA','M_MSEG_BWE','M_MSEG_BWF','M_MSEG_LGO')&lt;/P&gt;&lt;P&gt;	AND FIELD = 'ACTVT' AND (LOW IN ('&lt;STRONG&gt;','01','02') OR HIGH IN ('&lt;/STRONG&gt;','01','02'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDER BY &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.AGR_NAME ASC, &lt;/P&gt;&lt;P&gt;	tst.AGR_AGRS.CHILD_AGR ASC,&lt;/P&gt;&lt;P&gt;	OBJECT ASC,&lt;/P&gt;&lt;P&gt;	FIELD ASC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2009 13:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376594#M1236722</guid>
      <dc:creator>corinne_lofts</dc:creator>
      <dc:date>2009-03-23T13:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Inactive Profiles in Object - Table/Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376595#M1236723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AGR_1251 DELETED != "X"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2009 13:42:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376595#M1236723</guid>
      <dc:creator>jurjen_heeck</dc:creator>
      <dc:date>2009-03-23T13:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Inactive Profiles in Object - Table/Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376596#M1236724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2009 13:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inactive-profiles-in-object-table-fields/m-p/5376596#M1236724</guid>
      <dc:creator>corinne_lofts</dc:creator>
      <dc:date>2009-03-23T13:48:00Z</dc:date>
    </item>
  </channel>
</rss>

