<?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 get role description in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023606#M1348085</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;There is FM or method that retrieve the role text which is store in the pfcg&lt;/P&gt;&lt;P&gt;i dont want to do select from table (agr_texts) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2009 13:59:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-18T13:59:54Z</dc:date>
    <item>
      <title>get role description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023606#M1348085</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;There is FM or method that retrieve the role text which is store in the pfcg&lt;/P&gt;&lt;P&gt;i dont want to do select from table (agr_texts) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 13:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023606#M1348085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T13:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: get role description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023607#M1348086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no specific function module available for this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you check this code in save part of PFCG in program LPRGN_TREEF10, It directly get stored in table AGR_TEXTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*       Save new values to DB
        i_agr_texts-mandt = sy-mandt .
        i_agr_texts-agr_name = s_agr_define-agr_name .
        i_agr_texts-spras    = sy-langu .
        i_agr_texts-line     = 0 .
        i_agr_texts-text     = s_agr_texts-text .
        append i_agr_texts.
        loop at i_text.
          i_agr_texts-mandt = sy-mandt.
          i_agr_texts-line = sy-tabix.
          i_agr_texts-text = i_text-text.
          append i_agr_texts.
        endloop.
        delete from agr_texts
          where agr_name = s_agr_define-agr_name and spras = sy-langu.
        insert agr_texts from table i_agr_texts
                                               accepting duplicate keys.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023607#M1348086</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-18T14:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: get role description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023608#M1348087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or try to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fm PRGN_RFC_READ_TEXTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023608#M1348087</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-18T14:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: get role description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023609#M1348088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can go through the foll FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; RSECVAL : Authorization Value Status, &lt;/P&gt;&lt;P&gt; RSECUSERAUTH : BI AS Authorizations: Assignment of User Auth. &lt;/P&gt;&lt;P&gt; Function Modules:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; RSEC_AUTHORITY_CHECK_IPROV &lt;/P&gt;&lt;P&gt; RSEC_AUTH_GET_IOBJ_RELEVANT &lt;/P&gt;&lt;P&gt; RSEC_CHECK_IPROV &lt;/P&gt;&lt;P&gt; RSEC_CHECK_VALIDITY &lt;/P&gt;&lt;P&gt; RSEC_COMPLETE_HIERAUTH &lt;/P&gt;&lt;P&gt; RSEC_GET_AUTH_FOR_USER &lt;/P&gt;&lt;P&gt; RSEC_GET_AUTH_HIER_FOR_USER &lt;/P&gt;&lt;P&gt; RSEC_ASSIGN_AUTHS_TO_USERS &lt;/P&gt;&lt;P&gt; RSEC_GET_ALL_GENERATED_AUTHS &lt;/P&gt;&lt;P&gt; RSEC_READ_ODS_HIER &lt;/P&gt;&lt;P&gt; RSEC_READ_ODS_USER_AUTH &lt;/P&gt;&lt;P&gt; RSEC_READ_ODS_VAL &lt;/P&gt;&lt;P&gt; RSEC_AUTHORIZATIONS_OF_USER &lt;/P&gt;&lt;P&gt; RSEC_GET_AUTH_FOR_USER_RFC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgrds,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-role-description/m-p/6023609#M1348088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:53:15Z</dc:date>
    </item>
  </channel>
</rss>

