<?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: input dialog box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104825#M104451</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to USe this FM....&lt;/P&gt;&lt;P&gt;POPUP_TO_GET_ONE_VALUE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Dec 2005 14:29:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-06T14:29:18Z</dc:date>
    <item>
      <title>input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104824#M104450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to have the input dialog box when i click on the pushbuttons. i am doing module pool programming. please help if you have any such FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104824#M104450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104825#M104451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to USe this FM....&lt;/P&gt;&lt;P&gt;POPUP_TO_GET_ONE_VALUE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104825#M104451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104826#M104452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are saying that you want to make a input field appear only when the user presses a pushbutton then....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create the input field via screen painter, set the attribute for "invisible".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user presses the fcode,  you should set a flag that you can use in the PBO.  In the PBO of the screen, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
IF screen-name = 'YOUR_INPUT_FIELD_NAME'.
screen-invisible = '0'.
screen-active = '1'.
modify screen.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104826#M104452</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-06T14:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104827#M104453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if FM POPUP_TO_GET_VALUE can be used...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Renjith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:29:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104827#M104453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104828#M104454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to throw a dialog box with values in it, try this.  You will just fire this function module in your PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


data: fields type table of  SVAL with header line.


fields-TABNAME = 'MARA'.
fields-FIELDNAME = 'MATNR'.
append fields.

fields-TABNAME = 'MARA'.
fields-FIELDNAME = 'MATKL'.
append fields.

call function 'POPUP_GET_VALUES'
  exporting
*   NO_VALUE_CHECK        = ' '
    popup_title           = 'Test'
*   START_COLUMN          = '5'
*   START_ROW             = '5'
* IMPORTING
*   RETURNCODE            =
  tables
    fields                = fields
* EXCEPTIONS
*   ERROR_IN_FIELDS       = 1
*   OTHERS                = 2
          .
if sy-subrc &amp;lt;&amp;gt; 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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104828#M104454</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-06T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104829#M104455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to see this also...&lt;/P&gt;&lt;P&gt;POPUP_TO_GET_VALUE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:32:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104829#M104455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104830#M104456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use :&lt;/P&gt;&lt;P&gt;data: fields 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;fields-tabname   = 'VBAK'.&lt;/P&gt;&lt;P&gt;fields-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;append fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fields-tabname   = 'VBAP'.&lt;/P&gt;&lt;P&gt;fields-fieldname = 'POSNR'.&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'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUE_CHECK        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    popup_title           = 'Popup'&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;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                = fields&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ERROR_IN_FIELDS       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will give you a pop .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:35:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104830#M104456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104831#M104457</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 use one of these fm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES:&lt;/P&gt;&lt;P&gt;Dialog box for the display and request of values, without check  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES_DB_CHECKED:&lt;/P&gt;&lt;P&gt;Dialog box for requesting values, check against the DB table/view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES_SET_MAX_FIELD:&lt;/P&gt;&lt;P&gt;Dialog box for setting the maximum no. of fields per dialog box  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES_USER_BUTTONS:&lt;/P&gt;&lt;P&gt;Dialog box for requesting values and offering user pushbuttons   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES_USER_CHECKED:&lt;/P&gt;&lt;P&gt;Dialog box for requesting values, check by user exit             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES_USER_HELP:&lt;/P&gt;&lt;P&gt;Dialog box for requesting values, call of user exits and help    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 14:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104831#M104457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T14:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104832#M104458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for one and all for ur co-operation and giving ur suggestions in different manners.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;surely reward the points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2005 15:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104832#M104458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-06T15:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: input dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104833#M104459</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;in the event &lt;/P&gt;&lt;P&gt;At selection on value request for the field ...&lt;/P&gt;&lt;P&gt;initially use POPUP_TO_GET_ONE_VALUE FM to get the table name ..&lt;/P&gt;&lt;P&gt;select the fields required from given table name ...&lt;/P&gt;&lt;P&gt;append the fields to the internal table which u using in F4 function module ,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps ... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 04:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-dialog-box/m-p/1104833#M104459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T04:41:33Z</dc:date>
    </item>
  </channel>
</rss>

