<?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 authorizations in report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753891#M903073</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;I just need clarification regarding authorisations, my requirement is something like this, i have to pass two values for actvt &amp;amp; the field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authorisation object - &lt;STRONG&gt;v_vfkk_fka&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;activity - &lt;STRONG&gt;03 &amp;amp; 02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;field value - &lt;STRONG&gt;'001' &amp;amp; '002'&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code i have written is not working, which is mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;authority-check object 'v_vfkk_fka'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;id 'fkart' field '001' '002'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;id 'actvt' field '03' '02'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest me where did i do the mistake?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 09:18:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-30T09:18:12Z</dc:date>
    <item>
      <title>authorizations in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753891#M903073</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;I just need clarification regarding authorisations, my requirement is something like this, i have to pass two values for actvt &amp;amp; the field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authorisation object - &lt;STRONG&gt;v_vfkk_fka&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;activity - &lt;STRONG&gt;03 &amp;amp; 02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;field value - &lt;STRONG&gt;'001' &amp;amp; '002'&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code i have written is not working, which is mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;authority-check object 'v_vfkk_fka'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;id 'fkart' field '001' '002'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;id 'actvt' field '03' '02'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest me where did i do the mistake?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:18:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753891#M903073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: authorizations in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753892#M903074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the following code:&lt;/P&gt;&lt;P&gt;WF_INTERFACE_KEY = '0000000130'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  BNAME = SY-UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if INTERFACE_KEY &amp;lt;&amp;gt; WF_INTERFACE_KEY.&lt;/P&gt;&lt;P&gt;    RETURN-TYPE = 'E'.&lt;/P&gt;&lt;P&gt;    RETURN-MESSAGE = 'Interface key error.'.&lt;/P&gt;&lt;P&gt;    append RETURN.&lt;/P&gt;&lt;P&gt;    clear RETURN.&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear INT_FIELDVALUE.&lt;/P&gt;&lt;P&gt;  refresh INT_FIELDVALUE.&lt;/P&gt;&lt;P&gt;  free INT_FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'ACTVT' to INT_FIELDVALUE-FIELD.&lt;/P&gt;&lt;P&gt;  move '16' to INT_FIELDVALUE-VALUE.&lt;/P&gt;&lt;P&gt;  append INT_FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'OBJNAME' to INT_FIELDVALUE-FIELD.&lt;/P&gt;&lt;P&gt;  move 'Z_RFC_RFQ_PO_DETAIL' to INT_FIELDVALUE-VALUE.&lt;/P&gt;&lt;P&gt;  append INT_FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'Z_AUTH_OBJECT_CHECK'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      BNAME         = BNAME&lt;/P&gt;&lt;P&gt;      OBJECT        = 'Z:RFC:WEBM'&lt;/P&gt;&lt;P&gt;      INTERFACE_KEY = WF_INTERFACE_KEY&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      RETURN        = WF_RETURN&lt;/P&gt;&lt;P&gt;      MSGLINE       = WF_MSGLINE&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      FIELDVALUE    = INT_FIELDVALUE&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      others        = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:22:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753892#M903074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: authorizations in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753893#M903075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out in this way ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authority-check object 'v_vfkk_fka'&lt;/P&gt;&lt;P&gt;id 'fkart' field '001&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;id 'fkart' field' '002'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;id 'actvt' field '03'&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;id 'actvt'  field '02'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753893#M903075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: authorizations in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753894#M903076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot give you values for the field. You have to split them. So it would be something like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authority-check object 'v_vfkk_fka'&lt;/P&gt;&lt;P&gt;id 'fkart' field '001'  &lt;/P&gt;&lt;P&gt;id 'actvt' field '03' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authority-check object 'v_vfkk_fka'&lt;/P&gt;&lt;P&gt;id 'fkart' field '001'  &lt;/P&gt;&lt;P&gt;id 'actvt' field '02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authority-check object 'v_vfkk_fka'&lt;/P&gt;&lt;P&gt;id 'fkart' field  '002'. &lt;/P&gt;&lt;P&gt;id 'actvt' field '03' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;authority-check object 'v_vfkk_fka'&lt;/P&gt;&lt;P&gt;id 'fkart' field  '002'. &lt;/P&gt;&lt;P&gt;id 'actvt' field '02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also make sure the object and ID are in uppercase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;~ Ranganath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ranganath Ramesh on Apr 30, 2008 11:24 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorizations-in-report/m-p/3753894#M903076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:23:45Z</dc:date>
    </item>
  </channel>
</rss>

