<?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: pop up window with input fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424545#M1050751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rafe,&lt;/P&gt;&lt;P&gt;Here u have to pass the tables parameters fields with reference table and fields so that it takes the length of input field, F4 help etc. U r not populating teh table. Comment the messages after FM call and handle the messages if u require it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you are definig the internal table with your own structure. U have to define it with type &lt;STRONG&gt;sval&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: it_fields TYPE TABLE OF sval,
wa_fields LIKE LINE OF sval.
REFRESH it_fields.
CLEAR wa_fields.
wa_fields-tabname = 'MARA'.
wa_fields-FIELDNAME = 'MATNR'.
APPEND wa_fields  TO it_fields.

wa_fields-tabname = 'MARC'.
wa_fields-FIELDNAME = 'WERKS'.
APPEND wa_fields  TO it_fields.

CALL FUNCTION 'POPUP_GET_VALUES_USER_CHECKED'
EXPORTING
formname = 'test'
popup_title = 'Aufträge Rückmelden'
programname = 'Doesnt_matter'


START_COLUMN = '5' 
START_ROW = '5' 
NO_CHECK_FOR_FIXED_VALUES = ' ' 
IMPORTING 
RETURNCODE = 
TABLES
fields = it_fields
EXCEPTIONS
error_in_fields = 1
OTHERS = 2
.
IF sy-subrc 0.
*MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
*WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now it gives u a popup asking for material number and plant.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the entered value in popup do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE it_fields INTO wa_fields WITH KEY TABNAME = 'MARA' fieldname = 'MATNR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fields-value contains the material number entered in the popup.&lt;/P&gt;&lt;P&gt;Similarly for plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So pass the table and field names as per ur req.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2008 07:44:07 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2008-09-05T07:44:07Z</dc:date>
    <item>
      <title>pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424537#M1050743</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;i need a popup window with 3 input fields. i only know the popup_to_confirm popup and i didnt find a forum post with the popup i need...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried to solve the problem with an additional dynpro, but that makes the whole thing to complicated. i just want the user to enter data in the middle of a procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:06:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424537#M1050743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T14:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424538#M1050744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rafe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please try this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_GET_VALUES_USER_CHECKED'&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424538#M1050744</guid>
      <dc:creator>martinj_schmitte</dc:creator>
      <dc:date>2008-09-04T14:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424539#M1050745</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;Try this FM POPUP_SEEK_IN_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this you can accept the values from a database table.&lt;/P&gt;&lt;P&gt;You have to give a dbtable in the exporting parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else goto se37 and try with Popup*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get many function modules like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:18:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424539#M1050745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T14:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424540#M1050746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use this FM. Even u can get F4 help.&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;Here fill the tables parameter FIELDS With table name nad field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After calling teh FM read the same table with table and field names to get the value entered by the user.(Field VALUE stores the entered value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just execute in SE37. U can understand the functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can give any number of input fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424540#M1050746</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-09-04T14:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424541#M1050747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you martin but can you give me an example code please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm not sure but isn't there a way to work without tables in these popups? i really only need 3 value fields in which the user can type something and thats it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: rafe b. on Sep 4, 2008 4:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424541#M1050747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T14:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424542#M1050748</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 find the sample codes for the function module by clicking the where-used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;Report RSSPO430&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF FIELDS OCCURS 1.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE SVAL.&lt;/P&gt;&lt;P&gt;DATA: END OF FIELDS,&lt;/P&gt;&lt;P&gt;      RETURNCODE(1)       TYPE C,&lt;/P&gt;&lt;P&gt;      POPUP_TITLE(30)     TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  POPUP_TITLE       = 'Programm holen'(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR FIELDS.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FIELDS-TABNAME    = 'TRDIR'.                              "*019d&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FIELDS-FIELDNAME  = 'NAME'.                               "*019d&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  fields-tabname    = 'TOJTB'.                              "*019i&lt;/P&gt;&lt;P&gt;  fields-fieldname  = 'PROGNAME'.                           "*019i&lt;/P&gt;&lt;P&gt;  FIELDS-FIELD_OBL  = 'X'.             "Muß-Feld&lt;/P&gt;&lt;P&gt;  APPEND FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'POPUP_GET_VALUES_USER_CHECKED'&lt;/P&gt;&lt;P&gt;       EXPORTING POPUP_TITLE     = POPUP_TITLE&lt;/P&gt;&lt;P&gt;                 PROGRAMNAME     = 'RSSPO430'&lt;/P&gt;&lt;P&gt;                 FORMNAME        = 'EXAMPLE_1_EXIT'&lt;/P&gt;&lt;P&gt;       IMPORTING RETURNCODE      = RETURNCODE&lt;/P&gt;&lt;P&gt;       TABLES    FIELDS          = FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:37:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424542#M1050748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T14:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424543#M1050749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Program RSSPO430   &lt;/P&gt;&lt;P&gt;Examples of Function Module POPUP_GET_VALUES_USER_CHECKED.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 14:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424543#M1050749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T14:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424544#M1050750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im doing it like this and it dumps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_fields,&lt;/P&gt;&lt;P&gt;        iedd          TYPE d,&lt;/P&gt;&lt;P&gt;        budat         TYPE d,&lt;/P&gt;&lt;P&gt;        conf_text(40) TYPE c,&lt;/P&gt;&lt;P&gt;      END OF ty_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_fields TYPE TABLE OF ty_fields,&lt;/P&gt;&lt;P&gt;          wa_fields LIKE LINE OF it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'POPUP_GET_VALUES_USER_CHECKED'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          formname                        = 'test'&lt;/P&gt;&lt;P&gt;          popup_title                     = 'Aufträge Rückmelden'&lt;/P&gt;&lt;P&gt;          programname                     = 'Doesnt_matter'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_COLUMN                    = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_ROW                       = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_CHECK_FOR_FIXED_VALUES       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURNCODE                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          fields                          = it_fields&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&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;        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&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;and then it dumps with the message that i used the right field but the field has the wrong lenght... why the wrong lenght? what's wrong &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope i'm not striking on your nerves and thanks for any further help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2008 15:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424544#M1050750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-04T15:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424545#M1050751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rafe,&lt;/P&gt;&lt;P&gt;Here u have to pass the tables parameters fields with reference table and fields so that it takes the length of input field, F4 help etc. U r not populating teh table. Comment the messages after FM call and handle the messages if u require it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you are definig the internal table with your own structure. U have to define it with type &lt;STRONG&gt;sval&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: it_fields TYPE TABLE OF sval,
wa_fields LIKE LINE OF sval.
REFRESH it_fields.
CLEAR wa_fields.
wa_fields-tabname = 'MARA'.
wa_fields-FIELDNAME = 'MATNR'.
APPEND wa_fields  TO it_fields.

wa_fields-tabname = 'MARC'.
wa_fields-FIELDNAME = 'WERKS'.
APPEND wa_fields  TO it_fields.

CALL FUNCTION 'POPUP_GET_VALUES_USER_CHECKED'
EXPORTING
formname = 'test'
popup_title = 'Aufträge Rückmelden'
programname = 'Doesnt_matter'


START_COLUMN = '5' 
START_ROW = '5' 
NO_CHECK_FOR_FIXED_VALUES = ' ' 
IMPORTING 
RETURNCODE = 
TABLES
fields = it_fields
EXCEPTIONS
error_in_fields = 1
OTHERS = 2
.
IF sy-subrc 0.
*MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
*WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now it gives u a popup asking for material number and plant.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the entered value in popup do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE it_fields INTO wa_fields WITH KEY TABNAME = 'MARA' fieldname = 'MATNR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fields-value contains the material number entered in the popup.&lt;/P&gt;&lt;P&gt;Similarly for plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So pass the table and field names as per ur req.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 07:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424545#M1050751</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-09-05T07:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window with input fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424546#M1050752</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;check FM POPUP_GET_VALUES_DB_CHECKED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kunjal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-with-input-fields/m-p/4424546#M1050752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:27:46Z</dc:date>
    </item>
  </channel>
</rss>

