<?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: authorization check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419461#M201535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Madan Kochana  .&lt;/P&gt;&lt;P&gt;Full points alloted...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jul 2006 07:25:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-11T07:25:53Z</dc:date>
    <item>
      <title>authorization check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419459#M201533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Can any one give me good example using AUTHORITY_CHECK function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 07:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419459#M201533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T07:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: authorization check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419460#M201534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i had used it in one of my development.&lt;/P&gt;&lt;P&gt;check if it is of use for u. &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT     vstel&lt;/P&gt;&lt;P&gt;  FROM       tvst&lt;/P&gt;&lt;P&gt;  INTO TABLE t_sel&lt;/P&gt;&lt;P&gt;  WHERE      vstel IN s_vstel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH t_authority.&lt;/P&gt;&lt;P&gt;  CLEAR t_authority.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT t_sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF t_sel[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;      AUTHORITY-CHECK OBJECT 'V_LIKP_VST'&lt;/P&gt;&lt;P&gt;                             ID 'VSTEL' FIELD t_sel-vstel&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '01'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '02'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '03'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '04'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '18'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '24'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '25'&lt;/P&gt;&lt;P&gt;                             ID 'ACTVT' FIELD '85'.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        t_authority-vstel = t_sel-vstel.&lt;/P&gt;&lt;P&gt;        APPEND t_authority.&lt;/P&gt;&lt;P&gt;        CLEAR t_authority.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'No Authorization For : '  '  '  INTO w_mes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT t_authority.&lt;/P&gt;&lt;P&gt;    CONCATENATE w_mes t_authority-vstel   INTO  w_mes SEPARATED BY space.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF t_authority[] IS NOT INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  message i068 with w_mes.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MESSAGE w_mes TYPE 'I'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXIT.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 07:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419460#M201534</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2006-07-11T07:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: authorization check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419461#M201535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Madan Kochana  .&lt;/P&gt;&lt;P&gt;Full points alloted...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 07:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-check/m-p/1419461#M201535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T07:25:53Z</dc:date>
    </item>
  </channel>
</rss>

