<?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: Matchcode selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075844#M96258</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;In the 'At selection-screen ON VALUE-REQUEST FOR p_soc' event (and also for b_propio): you need to call function 'DYNP_VALUES_READ' to capture the value of c_banco.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            dyname               = p_prog&lt;/P&gt;&lt;P&gt;            dynumb               = '1000'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            dynpfields           = p_dt_read&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, p_dt_read gives the selected c_banco value.&lt;/P&gt;&lt;P&gt;Then, select the values from T012K.&lt;/P&gt;&lt;P&gt;Then, call function 'DYNP_VALUES_UPDATE' to update the p_soc and b_propio values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option is to:&lt;/P&gt;&lt;P&gt;Use 'DYNP_VALUES_READ' as before, but use the get/set parameters to update instead of 'DYNP_VALUES_UPDATE'. You may have to declare the p_sco and b_propio with a 'Memory ID XXX' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Bhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Nov 2005 21:57:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-10T21:57:54Z</dc:date>
    <item>
      <title>Matchcode selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075841#M96255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I´m trying to fill 3 fields when the user selects the matchcode help. I want to fill the fields after the first was selected, any ideas?&lt;/P&gt;&lt;P&gt;the code in the selection is: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK datosex WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;PARAMETERS:  fec_ini LIKE febmka-budtm DEFAULT sy-datum OBLIGATORY ,&lt;/P&gt;&lt;P&gt;             fec_fin LIKE febmka-budtm DEFAULT sy-datum OBLIGATORY ,&lt;/P&gt;&lt;P&gt;             c_banco LIKE t012k-hktid OBLIGATORY.&lt;/P&gt;&lt;P&gt;             p_soc LIKE t012k-bukrs OBLIGATORY,&lt;/P&gt;&lt;P&gt;             b_propio LIKE t012k-hbkid OBLIGATORY,&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK datosex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want after the user selects c_banco with the matchcode, fill p_soc and b_propio. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2005 16:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075841#M96255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-10T16:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Matchcode selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075842#M96256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;  You can do this in initialization event.You capture the value entered in the c_banco &amp;amp; then use Function module F4_SEARCH_HELP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2005 19:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075842#M96256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-10T19:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Matchcode selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075843#M96257</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;You can create your match code object and assign to your selection parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use SE11 transaction and create a collective search help and use in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Metho2 : Use Initialization and use F4 help function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lanka Murthy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2005 19:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075843#M96257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-10T19:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Matchcode selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075844#M96258</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;In the 'At selection-screen ON VALUE-REQUEST FOR p_soc' event (and also for b_propio): you need to call function 'DYNP_VALUES_READ' to capture the value of c_banco.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            dyname               = p_prog&lt;/P&gt;&lt;P&gt;            dynumb               = '1000'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            dynpfields           = p_dt_read&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, p_dt_read gives the selected c_banco value.&lt;/P&gt;&lt;P&gt;Then, select the values from T012K.&lt;/P&gt;&lt;P&gt;Then, call function 'DYNP_VALUES_UPDATE' to update the p_soc and b_propio values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option is to:&lt;/P&gt;&lt;P&gt;Use 'DYNP_VALUES_READ' as before, but use the get/set parameters to update instead of 'DYNP_VALUES_UPDATE'. You may have to declare the p_sco and b_propio with a 'Memory ID XXX' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Bhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2005 21:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075844#M96258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-10T21:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Matchcode selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075845#M96259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhanumurthy,&lt;/P&gt;&lt;P&gt;Thanks for answering, it worked fine, but is there a way to do it after I select the value for 'b_propio', I dont whant to do it by pressing F4 on 'c_banco'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Gabriel Fernando Pulido V.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2005 22:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/matchcode-selection/m-p/1075845#M96259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-10T22:30:40Z</dc:date>
    </item>
  </channel>
</rss>

