<?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: Dropdown box in Module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591006#M1082669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried assigning FCODE, but not working,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2008 05:07:54 GMT</pubDate>
    <dc:creator>MilindMungaji</dc:creator>
    <dc:date>2008-10-01T05:07:54Z</dc:date>
    <item>
      <title>Dropdown box in Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591003#M1082666</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;I have two dropdown boxes on Module pool screen with one on different subscreen and the other on different subscreen.&lt;/P&gt;&lt;P&gt;When the user selects a value from one dropdown box a specific set of values are populated in second dropdown box......&lt;/P&gt;&lt;P&gt;I have done the above things, but the thing is that, after selecting a value from first dropdown the user have to press ENTER then only the second dropdown is populated.........&lt;/P&gt;&lt;P&gt;I have used the FM DYNP_READ_VALUES&lt;/P&gt;&lt;P&gt;Still not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody give the solution is to how to avoid pressing ENTER.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Milind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 04:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591003#M1082666</guid>
      <dc:creator>MilindMungaji</dc:creator>
      <dc:date>2008-10-01T04:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dropdown box in Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591004#M1082667</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;Have u tried assigning a function code to the first drop-down?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 05:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591004#M1082667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T05:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dropdown box in Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591005#M1082668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Milind Mungaji  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the abap programs needs some event to start execution atleast the user should press enter for the next dropdown to fill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hey this is not possible the FCODE returns when there is a event when you are not pressing enter, then no event will be triggered..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check THIS  " MODULE mod AT CURSOR-SELECTION."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The module mod is called whenever the function code of the user action is CS with function type S. If you use this statement, it is best to assign the function code CS to function key F2. This also assigns it to the mouse double-click. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether the field is blank or not in the first dropdown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM demo_dynpro_on_condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;      input1(20) TYPE c, input2(20) TYPE c, input3(20) TYPE c,&lt;/P&gt;&lt;P&gt;      fld(20) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE init_screen_100 OUTPUT.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STATUS_100'.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE cancel INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE cursor INPUT.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD fld.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-001 fld.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE module_1 INPUT.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-002.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE module_2 INPUT.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-003.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE module_* INPUT.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-004 input3.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE c1 INPUT.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-005 '1'.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE c2 INPUT.&lt;/P&gt;&lt;P&gt;  MESSAGE i888(sabapdocu) WITH text-005 '2' text-006 '3'.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The screen flow logic is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE init_screen_100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE cancel AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;  CHAIN.&lt;/P&gt;&lt;P&gt;    FIELD: input1, input2.&lt;/P&gt;&lt;P&gt;    MODULE module_1 ON CHAIN-INPUT.&lt;/P&gt;&lt;P&gt;    FIELD  input3 MODULE module_* ON *-INPUT.&lt;/P&gt;&lt;P&gt;    MODULE module_2 ON CHAIN-REQUEST.&lt;/P&gt;&lt;P&gt;  ENDCHAIN.&lt;/P&gt;&lt;P&gt;  FIELD input1 MODULE c1 AT CURSOR-SELECTION.&lt;/P&gt;&lt;P&gt;  CHAIN.&lt;/P&gt;&lt;P&gt;    FIELD: input2, input3.&lt;/P&gt;&lt;P&gt;    MODULE c2 AT CURSOR-SELECTION.&lt;/P&gt;&lt;P&gt;  ENDCHAIN.&lt;/P&gt;&lt;P&gt;  MODULE cursor AT CURSOR-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Never Forget to reward people who helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Midhun Abraham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Midhun Abraham on Oct 1, 2008 7:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 05:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591005#M1082668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T05:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dropdown box in Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591006#M1082669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried assigning FCODE, but not working,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 05:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591006#M1082669</guid>
      <dc:creator>MilindMungaji</dc:creator>
      <dc:date>2008-10-01T05:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dropdown box in Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591007#M1082670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Milind,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have an attribute "Responds to double-click" under the Display attributes. Do select that and use double click and catch the FCODE.&lt;/P&gt;&lt;P&gt;Probably this shall help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 05:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-box-in-module-pool/m-p/4591007#M1082670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T05:16:31Z</dc:date>
    </item>
  </channel>
</rss>

