<?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: authgrp in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322667#M1226804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great !! It would be good if you could share the correct solution with everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Mar 2009 13:15:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-03T13:15:18Z</dc:date>
    <item>
      <title>authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322661#M1226798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SAP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have requirment where i need to modify the sap standard report, where i need to add an extra column called AUTHGRP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data lies in table :VICNCN -Field - authgrp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to pull the data where authgrp = where authgrp = 'R700'&lt;/P&gt;&lt;P&gt;             AND authgrp = 'R710'&lt;/P&gt;&lt;P&gt;             AND authgrp = 'R720'&lt;/P&gt;&lt;P&gt;             AND authgrp = 'R721'&lt;/P&gt;&lt;P&gt;             AND authgrp = 'R730'&lt;/P&gt;&lt;P&gt;             AND authgrp = 'R740'.&lt;/P&gt;&lt;P&gt;how can i pull the data through sql statement please help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 13:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322661#M1226798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T13:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322662#M1226799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To change the sap standars report you need access key!&lt;/P&gt;&lt;P&gt;In the report find out the authorization checking part (It may be in the event at selection screen)&lt;/P&gt;&lt;P&gt;and add ur selection creteria also in where condition.&lt;/P&gt;&lt;P&gt;Be careful while doing this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 13:28:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322662#M1226799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T13:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322663#M1226800</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;Check if there is any enhancement point to insert the code for authorization group..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To check enhancement point -Program(SE38)-&amp;gt;Menu-&amp;gt;Edit-&amp;gt;Enhancement Options-&amp;gt;Show implicit enhancements...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, then you need to have the access key to modify...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 14:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322663#M1226800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T14:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322664#M1226801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Laya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First define the ranges for Authgrp as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ranges:
  r_authgrp for vicncn-authgrp.

* Set Authgrp RANGE
  clear r_authgrp. refresh r_authgrp.
  r_authgrp = 'IEQR700'. append r_authgrp. clear r_authgrp.
  r_authgrp = 'IEQR710'. append r_authgrp. clear r_authgrp.
  r_authgrp = 'IEQR720'. append r_authgrp. clear r_authgrp.
  r_authgrp = 'IEQR721'. append r_authgrp. clear r_authgrp.
  r_authgrp = 'IEQR730'. append r_authgrp. clear r_authgrp.
  r_authgrp = 'IEQR740'. append r_authgrp. clear r_authgrp.

*select query
   select single * from vicncn where authgrp in r_authgrp.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 14:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322664#M1226801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T14:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322665#M1226802</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;If you are looking for the sql query to fetch data from VICNCN table based on the condition given by you then you can use the following code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF itab OCCURS 0, " This could be any internal table which will hold your data.&lt;/P&gt;&lt;P&gt;        intreno LIKE vicncn-intreno,&lt;/P&gt;&lt;P&gt;        authgrp LIKE vicncn-authgrp,&lt;/P&gt;&lt;P&gt;       END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You can select the fields according to your requirement.&lt;/P&gt;&lt;P&gt;SELECT intreno authgrp&lt;/P&gt;&lt;P&gt;INTO TABLE itab&lt;/P&gt;&lt;P&gt;FROM vicncn&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;authgrp IN ('R700' , 'R710' , 'R720', 'R721', 'R730', 'R740' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should give you all the records from VICNCN table which has got authgroup values as 'R700' , 'R710' , 'R720', 'R721', 'R730', 'R740' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to display this data in your standard report you will have to find some enhancement spot / User Exit or you need a Access Key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 14:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322665#M1226802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T14:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322666#M1226803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 12:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322666#M1226803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T12:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: authgrp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322667#M1226804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great !! It would be good if you could share the correct solution with everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 13:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authgrp/m-p/5322667#M1226804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T13:15:18Z</dc:date>
    </item>
  </channel>
</rss>

