<?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: f4 help in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619960#M601579</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;Under the Event &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_BRANCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Call the FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DYNP_VALUES_READ   "To get the values of the fields from Sel Screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  F4_INT_TABLE_VALUE_REQUEST  "To generate F4 help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DYNP_VALUES_UPDATE to Copy the Values to Selection Screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2007 11:42:12 GMT</pubDate>
    <dc:creator>varma_narayana</dc:creator>
    <dc:date>2007-07-24T11:42:12Z</dc:date>
    <item>
      <title>f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619956#M601575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you see the transaction "FCHN" then you will find that when you enter "Account ID" by using the F4 help the "House Bank" and "Paying Company Code" get filled on its own from the line you have selected. similarly when you "House Bank" by using the F4 help the  "Paying Company Code" get filled on its own from the line you have selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do the same in my Z Program where in i have the following fields "bukrs" and "branch" from the table "j_1bbranch" where in i want to select the "branch" and the "bukrs" should be picked up on its own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: bukrs TYPE bukrs,&lt;/P&gt;&lt;P&gt;            branch LIKE j_1bbranch-branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should be possible as one "branch" has only one "bukrs" while one "bukrs" can have more than one "branch".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so on selecting "branch" the "bukrs" should be filled on its own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619956#M601575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619957#M601576</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;U can give MATCHCODE OBJECT for that Parameter so that u can get F4 help for that Parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PARAMETERS:  p_zfield  TYPE ztable-zfield             MATCHCODE OBJECT zfield_sh_1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You must create a Search Help (that's how matchcodes are called nowadays) in transaction SE11. in my example code &amp;lt;b&amp;gt;zfield_sh_1&amp;lt;/b&amp;gt; would be the Search Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps To create Matchcode Object:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step1 : Go to Se11 and Select Search Help and Enter One Name and Click Create.&lt;/P&gt;&lt;P&gt;Step2 : Enter your Table name in 'Selection Method' Field.&lt;/P&gt;&lt;P&gt;Step3 : Enter the field Name and tick the Flags Imp and Exp and Type 1 and 2 in Lpos,&lt;/P&gt;&lt;P&gt;Spos fields.&lt;/P&gt;&lt;P&gt;Step4 : Save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK THIS LINK TO CREATE A MATCHCODE OBJECT&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/tip/1,289483,sid21_gci553386,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/tip/1,289483,sid21_gci553386,00.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619957#M601576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619958#M601577</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;Use the event &amp;lt;b&amp;gt;AT SELECTION SCREEN ON FIELD(field&amp;lt;/b&amp;gt;)  and then write the select query..this will help you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619958#M601577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619959#M601578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;put :&lt;/P&gt;&lt;P&gt;PARAMETERS: bukrs like j_1bbranch-bukrs,&lt;/P&gt;&lt;P&gt;branch LIKE j_1bbranch-branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it should work,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sooness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619959#M601578</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-07-24T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619960#M601579</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;Under the Event &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_BRANCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Call the FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DYNP_VALUES_READ   "To get the values of the fields from Sel Screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  F4_INT_TABLE_VALUE_REQUEST  "To generate F4 help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DYNP_VALUES_UPDATE to Copy the Values to Selection Screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619960#M601579</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-07-24T11:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619961#M601580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Narayana Varma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please give me the steps in detail...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/2619961#M601580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:51:31Z</dc:date>
    </item>
  </channel>
</rss>

