<?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: How to identify call to system function through ABAP code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111620#M1816108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanjana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could find only below 4 arithmetic operations from the ABAP documentation.&lt;/P&gt;&lt;P&gt;You can also look into the below documentation for further info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/386789" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thanga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Feb 2014 09:09:43 GMT</pubDate>
    <dc:creator>ThangaPrakash</dc:creator>
    <dc:date>2014-02-13T09:09:43Z</dc:date>
    <item>
      <title>How to identify call to system function through ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111616#M1816104</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;&lt;/P&gt;&lt;P&gt;We need quick help. we are building tool for ABAP coding standards and we need to identify a call to system function in custom code and give appropriate error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error would be "&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt;Call of a System Function: &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;CALL 'cfunc'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt; is only intended for internal usage. Incompatible changes and further development is possible at any time and without warning or notice."&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt;So is there anyway to identify call to system functions, we are basically trying to find pattern to search in code for system function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt;Can we get list of system functions from any table , so that particular list of functions can be searched in program?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt;"&gt;Sanjana&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 06:52:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111616#M1816104</guid>
      <dc:creator>sanjana_lingras</dc:creator>
      <dc:date>2014-02-13T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify call to system function through ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111617#M1816105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanjana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the source code using the FM "&lt;SPAN style="color: #333333; font-size: 11.818181991577148px;"&gt;RPY_PROGRAM_READ &lt;/SPAN&gt;" and check in internal table "SOURCE_EXTENDED" for the statement, then raise your message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thanga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 07:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111617#M1816105</guid>
      <dc:creator>ThangaPrakash</dc:creator>
      <dc:date>2014-02-13T07:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify call to system function through ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111618#M1816106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are able to read source code but we need inputs regarding the pattern for system functions or list of system functions which we can search in program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea from where we ca find available system functions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanjana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 07:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111618#M1816106</guid>
      <dc:creator>sanjana_lingras</dc:creator>
      <dc:date>2014-02-13T07:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify call to system function through ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111619#M1816107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Sample report&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt; data&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;prog &lt;SPAN class="L0S52"&gt;type &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;length &lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;data&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;itab &lt;SPAN class="L0S52"&gt;type &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;table &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;of &lt;/SPAN&gt;string&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;data&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;:&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;results &lt;SPAN class="L0S52"&gt;type &lt;/SPAN&gt;match_result_tab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; prog &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'RSWATCH0'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;read &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;report &lt;/SPAN&gt;prog &lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;itab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;find &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;all &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;occurrences &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;of &lt;/SPAN&gt;regex &lt;SPAN class="L0S33"&gt;'CALL '&lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'C_'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;in &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;table &lt;/SPAN&gt;itab&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;*&amp;nbsp; RESPECTING CASE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; results results&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 08:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111619#M1816107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-13T08:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify call to system function through ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111620#M1816108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanjana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could find only below 4 arithmetic operations from the ABAP documentation.&lt;/P&gt;&lt;P&gt;You can also look into the below documentation for further info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/386789" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thanga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 09:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-identify-call-to-system-function-through-abap-code/m-p/10111620#M1816108</guid>
      <dc:creator>ThangaPrakash</dc:creator>
      <dc:date>2014-02-13T09:09:43Z</dc:date>
    </item>
  </channel>
</rss>

