<?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 how to write select options with extension in module pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196801#M761750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;M having  the following fields through screen painter.&lt;/P&gt;&lt;P&gt;1. sales offfice&lt;/P&gt;&lt;P&gt;2.sales district&lt;/P&gt;&lt;P&gt;3.customer no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for those three fields no extension is not provided and no search help is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want write  seletion options to get extension in that module pool &lt;/P&gt;&lt;P&gt;screen.&lt;/P&gt;&lt;P&gt;plese send coding for me , please let me know how to get that &lt;/P&gt;&lt;P&gt;select options with the above all three fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Raji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2007 11:18:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-26T11:18:11Z</dc:date>
    <item>
      <title>how to write select options with extension in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196801#M761750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;M having  the following fields through screen painter.&lt;/P&gt;&lt;P&gt;1. sales offfice&lt;/P&gt;&lt;P&gt;2.sales district&lt;/P&gt;&lt;P&gt;3.customer no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for those three fields no extension is not provided and no search help is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want write  seletion options to get extension in that module pool &lt;/P&gt;&lt;P&gt;screen.&lt;/P&gt;&lt;P&gt;plese send coding for me , please let me know how to get that &lt;/P&gt;&lt;P&gt;select options with the above all three fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Raji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 11:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196801#M761750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T11:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to write select options with extension in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196802#M761751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In top include&lt;/P&gt;&lt;P&gt;DATA: number(4) TYPE n VALUE '9005',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_9001.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN AREA1 INCLUDING SY-REPID number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_9001.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN AREA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  status_9001  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_9001 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF SCREEN 9005 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;  PARAMETER pa_bukrs TYPE t001-bukrs.&lt;/P&gt;&lt;P&gt;  select-options matnr for wa_matnr.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 9005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " status_9001  OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 11:29:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196802#M761751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T11:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to write select options with extension in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196803#M761752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;Myself i got the answere how to write the multiple select options in module pool program for different fields.&lt;/P&gt;&lt;P&gt;The logic is mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.First place bush button whereever u want in selection screen.&lt;/P&gt;&lt;P&gt;2.And give the FCT CODE  name  as PB_SO for that push button.&lt;/P&gt;&lt;P&gt;3.And the ICON NAME in layout as 'ICON_DISPLAY_MORE'&lt;/P&gt;&lt;P&gt;from icon list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If push button name is PB_SO. (SO= sales office = knvv-vkbur)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'PB_SO'.   &lt;/P&gt;&lt;P&gt;call function 'COMPLEX_SELECTIONS_DIALOG'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;    TITLE                   = 'Sales Office'&lt;/P&gt;&lt;P&gt;   tables&lt;/P&gt;&lt;P&gt;    range                   =  gr_vkbur (gr_vkbur = Dummy ranges)&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;   CANCELLED                =  0&lt;/P&gt;&lt;P&gt;   OTHERS                   =  1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plese let me know if there is any other option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards &lt;/P&gt;&lt;P&gt;raji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 05:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196803#M761752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T05:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to write select options with extension in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196804#M761753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent rajyam... works like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doug -&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 17:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-select-options-with-extension-in-module-pool-program/m-p/3196804#M761753</guid>
      <dc:creator>former_member196064</dc:creator>
      <dc:date>2008-02-25T17:57:59Z</dc:date>
    </item>
  </channel>
</rss>

