<?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: search a specific value in different programs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502859#M1065394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the report RPR_ABAP_SOURCE_SCAN to search for strings, but this report will give a successfull hit if the string is in the program code. ie Hardcoded (p_parameter = 'ABCD'.). It will not find the report where the value comes from the selection screen variant. For that you have to search all variants by building a custom report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Sep 2008 15:05:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-19T15:05:57Z</dc:date>
    <item>
      <title>search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502855#M1065390</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;I have a specific value and I want to know in which program(s) this value is used. I don't know if this value is in a parameter or a select-options or a constant or ... So I want to check every program and find if a program use my value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe is there a transaction code that could do that ? If not, I need to create a program. So is there a function module which could read a program and find if a value is used ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help. If I'm not clear enough, I will enjoy to explain my problem with more details...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 14:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502855#M1065390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T14:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502856#M1065391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you need to check for a specific value, like for example 42, or do you need to check for the variable usage in different programs?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 14:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502856#M1065391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T14:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502857#M1065392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not in front of SAP now so not able to give exact name but you can search in SE38 by &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*scan*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; press F4 or also in SE37&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*scan*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; press F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 14:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502857#M1065392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T14:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502858#M1065393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will be more precise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, my value is ABCD and I want to have a liste of programs in which ABCD is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABCD could be a value for a constant, a parameter, a select-options, etc. like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First example :&lt;/P&gt;&lt;P&gt;PARAMETERS : p_parameter LIKE mara-matnr.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;p_parameter = 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second example :&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_select FOR mara-matnr.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;s_select = 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third example :&lt;/P&gt;&lt;P&gt;CONSTANTS : c_constant TYPE c VALUE 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My value ABCD could be used in programs to check results like this :&lt;/P&gt;&lt;P&gt;IF p_parameter = 'ABCD'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 14:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502858#M1065393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T14:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502859#M1065394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the report RPR_ABAP_SOURCE_SCAN to search for strings, but this report will give a successfull hit if the string is in the program code. ie Hardcoded (p_parameter = 'ABCD'.). It will not find the report where the value comes from the selection screen variant. For that you have to search all variants by building a custom report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 15:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502859#M1065394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T15:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502860#M1065395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RS_ABAP_SOURCE_SCAN in SE38&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 15:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502860#M1065395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T15:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: search a specific value in different programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502861#M1065396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 09:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-a-specific-value-in-different-programs/m-p/4502861#M1065396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T09:36:07Z</dc:date>
    </item>
  </channel>
</rss>

