<?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: POPUP WINDOW in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314225#M793812</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 do dat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use dis FM &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;POPUP_GET_VALUES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the no of rows u append in ivals table = no of fields in popup window....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can make it non editable,validate the user inputs etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value entered by user ll be in VALUE field of ivals....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Study the FM's documentation in se37 for clarification....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2008 06:13:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-23T06:13:13Z</dc:date>
    <item>
      <title>POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314220#M793807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;iwant to know whether it is possible to pass data to a popup screen through a program and save data entered through it into a table . if it is possible please revert back points will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314220#M793807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314221#M793808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can call a screen in your program.&lt;/P&gt;&lt;P&gt;The screen should be created in the same program.&lt;/P&gt;&lt;P&gt;In this case the data available in your program is available in your screen as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using module pool programming you can then create the screen and add logic to save data entered into a Z table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314221#M793808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314222#M793809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes its possible to pass values from program to a pop-up window and use data back.&lt;/P&gt;&lt;P&gt;e.g. use function module 'POPUP_WITH_2_BUTTONS_TO_CHOOSE' this can be used where the data can be passed to and fro.. just as normal variables are passed in between form statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward appropriate points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Simi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314222#M793809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314223#M793810</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;Look at this code. It will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: SEL_INDEX LIKE SY-TABIX.&lt;/P&gt;&lt;P&gt;DATA: I_COLUMNS LIKE HELP_VALUE OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Set the columns for table to be displayed &lt;/P&gt;&lt;P&gt;I_COLUMNS-TABNAME = 'ZPFDRLOG'." YOur Table name&lt;/P&gt;&lt;P&gt;I_COLUMNS-FIELDNAME = 'MANDT'. APPEND I_COLUMNS. "No display&lt;/P&gt;&lt;P&gt;I_COLUMNS-SELECTFLAG = 'X'.&lt;/P&gt;&lt;P&gt;I_COLUMNS-FIELDNAME = 'ZSTART_DT'. APPEND I_COLUMNS.&lt;/P&gt;&lt;P&gt;I_COLUMNS-FIELDNAME = 'ZSTART_TM'. APPEND I_COLUMNS.&lt;/P&gt;&lt;P&gt;I_COLUMNS-FIELDNAME = 'ZPROCESS'. APPEND I_COLUMNS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Call function to display the selection and get the return index &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MD_POPUP_SHOW_INTERNAL_TABLE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;TITLE = 'Window Tittle'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;INDEX = SEL_INDEX&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUES = I_DISPLAY_ZPFDRLOG&lt;/P&gt;&lt;P&gt;COLUMNS = I_COLUMNS&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;LEAVE = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314223#M793810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314224#M793811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can pass data in pop up of messages&lt;/P&gt;&lt;P&gt;also in FM like popup_on_exit_command &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats all i know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314224#M793811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314225#M793812</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 do dat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use dis FM &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;POPUP_GET_VALUES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the no of rows u append in ivals table = no of fields in popup window....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can make it non editable,validate the user inputs etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value entered by user ll be in VALUE field of ivals....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Study the FM's documentation in se37 for clarification....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314225#M793812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314226#M793813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data :    ivals TYPE TABLE OF sval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ivals-tabname = 'MBEW'.&lt;/P&gt;&lt;P&gt;      ivals-fieldname = 'BWTAR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND ivals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ivals-tabname = 'MBEW'.&lt;/P&gt;&lt;P&gt;      ivals-fieldname = 'BWTAR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND ivals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'POPUP_GET_VALUES'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          popup_title           = ' Enter The input'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          fields                = ivals&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ERROR_IN_FIELDS       = 1&lt;/P&gt;&lt;P&gt;    OTHERS                = 2&lt;/P&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ivals.&lt;/P&gt;&lt;P&gt;        write / ivals-value.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314226#M793813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP WINDOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314227#M793814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SIMI,&lt;/P&gt;&lt;P&gt;The function module is working but how to give enter the data into it and save it to ztable and i want the pop up to come in the same screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 06:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-window/m-p/3314227#M793814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T06:26:02Z</dc:date>
    </item>
  </channel>
</rss>

