<?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: match codes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479586#M558494</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;Matchcodes are nothing but the Search helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THere are used to provide Value Help for the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a search help from SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2007 06:16:07 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-06-29T06:16:07Z</dc:date>
    <item>
      <title>match codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479584#M558492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi...&lt;/P&gt;&lt;P&gt;What are match codes? &lt;/P&gt;&lt;P&gt;Can u explain where they are used in the program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479584#M558492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T06:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: match codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479585#M558493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This addition links the input field of the parameter to a search help search_help from the ABAP Dictionary. The name of the search help must be entered directly. For the input field of the parameter on the selection screen, the input help key is displayed. When the input help (F4) is requested, the user is displayed the hit list from the search help. When an entry is selected, the respective value is placed into the input field. If no search help for the specified name exists in the ABAP Dictionary, a message is displayed in the status line when the input help is requested. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The addition MATCHCODE OBJECT cannot be used together with the additions AS CHECKBOX or RADIOBUTTON. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479585#M558493</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2007-06-29T06:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: match codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479586#M558494</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;Matchcodes are nothing but the Search helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THere are used to provide Value Help for the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a search help from SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479586#M558494</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-29T06:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: match codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479587#M558495</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;Match code nothing but Search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer this code for search help depending on the values of an internal ta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_ccgrp LIKE rkpln-ksgru. "Cost Center Group&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*Input help for Cost Center Group&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ccgrp.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF ty_ccenter_group,&lt;/P&gt;&lt;P&gt;          setname TYPE setnamenew,&lt;/P&gt;&lt;P&gt;          descript TYPE settext,&lt;/P&gt;&lt;P&gt;         END OF ty_ccenter_group.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  DATA : it_ccenter_group TYPE TABLE OF ty_ccenter_group.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CLEAR it_ccenter_group.&lt;/P&gt;&lt;P&gt;  SELECT a~setname&lt;/P&gt;&lt;P&gt;         b~descript&lt;/P&gt;&lt;P&gt;         INTO TABLE it_ccenter_group&lt;/P&gt;&lt;P&gt;         FROM setheader AS a INNER JOIN&lt;/P&gt;&lt;P&gt;              setheadert AS b ON&lt;/P&gt;&lt;P&gt;              a&lt;SUB&gt;subclass EQ b&lt;/SUB&gt;subclass AND&lt;/P&gt;&lt;P&gt;              a&lt;SUB&gt;setname EQ b&lt;/SUB&gt;setname&lt;/P&gt;&lt;P&gt;              WHERE a~setclass EQ '0101' AND&lt;/P&gt;&lt;P&gt;                    b~langu EQ sy-langu.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            retfield    = 'SETNAME'&lt;/P&gt;&lt;P&gt;            dynpprog    = v_repid&lt;/P&gt;&lt;P&gt;            dynpnr      = '1000'&lt;/P&gt;&lt;P&gt;            dynprofield = 'P_CCGRP'&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab   = it_ccenter_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479587#M558495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T06:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: match codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479588#M558496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match code is  similar to table index that gives list of possible values for either primary keys or non-primary keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/match-codes/m-p/2479588#M558496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T06:57:00Z</dc:date>
    </item>
  </channel>
</rss>

