<?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: Function module RS_TOOL_ACCESS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-rs-tool-access/m-p/2246629#M485011</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with SCAN instruction :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : begin of t_code_prgm occurs 0,&lt;/P&gt;&lt;P&gt;            ligne(72) type c,&lt;/P&gt;&lt;P&gt;       end of t_code_prgm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_tokens occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE STOKEN.&lt;/P&gt;&lt;P&gt;DATA  end of t_tokens.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_statements occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE SSTMNT.&lt;/P&gt;&lt;P&gt;DATA  end of t_statements.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_structures occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE SSTRUC.&lt;/P&gt;&lt;P&gt;DATA  end of t_structures.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Parameters : p_programme   like   sy-repid.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;READ REPORT p_programme into t_code_prgm.&lt;/P&gt;&lt;P&gt;SCAN ABAP-SOURCE t_code_prgm  TOKENS into t_tokens&lt;/P&gt;&lt;P&gt;                          STRUCTURES into t_structures&lt;/P&gt;&lt;P&gt;                          STATEMENTS into t_statements.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIPS:&lt;/P&gt;&lt;P&gt;t_structures-STMNT_FROM and t_structures-STMNT_TO is an interval matching with t_statements-number (or =index, it's the same)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_statements-FROM and t_statements-TO is an interval matching with t_tokens index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Use F1 on 'SCAN' to find list of types in t_structures-TYPE and t_structures-STMNT_TYPE&lt;/P&gt;&lt;P&gt;example : TYPE R for "ROUTINE", STMNT_TYPE "O" for "FORM", STMNT_TYPE "M" for "MODULE" ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2007 09:56:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-16T09:56:19Z</dc:date>
    <item>
      <title>Function module RS_TOOL_ACCESS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-rs-tool-access/m-p/2246628#M485010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   using the function module &amp;lt;b&amp;gt;'RS_TOOL_ACCESS'&amp;lt;/b&amp;gt; I can get the where used list, but i dnt want the pop box to be displayed instead want to hold the where used list in a variable???????? &lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;helpful answers will be highly appreciated.......&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 09:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-rs-tool-access/m-p/2246628#M485010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T09:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Function module RS_TOOL_ACCESS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-rs-tool-access/m-p/2246629#M485011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with SCAN instruction :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : begin of t_code_prgm occurs 0,&lt;/P&gt;&lt;P&gt;            ligne(72) type c,&lt;/P&gt;&lt;P&gt;       end of t_code_prgm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_tokens occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE STOKEN.&lt;/P&gt;&lt;P&gt;DATA  end of t_tokens.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_statements occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE SSTMNT.&lt;/P&gt;&lt;P&gt;DATA  end of t_statements.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA  begin of t_structures occurs 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE SSTRUC.&lt;/P&gt;&lt;P&gt;DATA  end of t_structures.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Parameters : p_programme   like   sy-repid.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;READ REPORT p_programme into t_code_prgm.&lt;/P&gt;&lt;P&gt;SCAN ABAP-SOURCE t_code_prgm  TOKENS into t_tokens&lt;/P&gt;&lt;P&gt;                          STRUCTURES into t_structures&lt;/P&gt;&lt;P&gt;                          STATEMENTS into t_statements.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIPS:&lt;/P&gt;&lt;P&gt;t_structures-STMNT_FROM and t_structures-STMNT_TO is an interval matching with t_statements-number (or =index, it's the same)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_statements-FROM and t_statements-TO is an interval matching with t_tokens index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Use F1 on 'SCAN' to find list of types in t_structures-TYPE and t_structures-STMNT_TYPE&lt;/P&gt;&lt;P&gt;example : TYPE R for "ROUTINE", STMNT_TYPE "O" for "FORM", STMNT_TYPE "M" for "MODULE" ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 09:56:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-rs-tool-access/m-p/2246629#M485011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T09:56:19Z</dc:date>
    </item>
  </channel>
</rss>

