<?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 PoP up or Function Module required!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541610#M1072869</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;Is there any pop-up or function module to get all the storage locations if we give Plant as Input parameter??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex : If I enter one plant, the corresponding storage locations should come in one pop up, so that I can select one storage loation from the avaliable pop up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know if such functionality is in place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thansk!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2008 08:33:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-30T08:33:48Z</dc:date>
    <item>
      <title>PoP up or Function Module required!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541610#M1072869</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;Is there any pop-up or function module to get all the storage locations if we give Plant as Input parameter??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex : If I enter one plant, the corresponding storage locations should come in one pop up, so that I can select one storage loation from the avaliable pop up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know if such functionality is in place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thansk!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541610#M1072869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: PoP up or Function Module required!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541611#M1072870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can create a window for it.or new screen for displaying data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WINDOW STARTING AT 1  15&lt;/P&gt;&lt;P&gt;         ENDING   AT 79 23.&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;      box TYPE c,&lt;/P&gt;&lt;P&gt;      box1 TYPE c.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541611#M1072870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: PoP up or Function Module required!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541612#M1072871</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;  &lt;STRONG&gt;Function Module required by u is this&lt;/STRONG&gt;    : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
*   DDIC_STRUCTURE         = ' '
    retfield               = retfield
*   PVALKEY                = ' '
*   DYNPPROG               = ' '
*   DYNPNR                 = ' '
*   DYNPROFIELD            = ' '
*   STEPL                  = 0
*   WINDOW_TITLE           = WINDOW_TITLE
*   VALUE                  = ' '
*   VALUE_ORG              = 'C'
*   MULTIPLE_CHOICE        = ' '
*   DISPLAY                = ' '
*   CALLBACK_PROGRAM       = ' '
*   CALLBACK_FORM          = ' '
*   MARK_TAB               = MARK_TAB
* IMPORTING
*   USER_RESET             = USER_RESET
  TABLES
    value_tab              = value_tab
*   FIELD_TAB              = FIELD_TAB
*   RETURN_TAB             = RETURN_TAB
*   DYNPFLD_MAPPING        = DYNPFLD_MAPPING
* EXCEPTIONS
*   PARAMETER_ERROR        = 1
*   NO_VALUES_FOUND        = 2
*   OTHERS                 = 3
          .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-or-function-module-required/m-p/4541612#M1072871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:54:39Z</dc:date>
    </item>
  </channel>
</rss>

