<?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 FM needed to get data from User in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084832#M98947</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 popup FM name to get input from the user...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body help me on this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rayudu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Oct 2005 06:29:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-24T06:29:33Z</dc:date>
    <item>
      <title>FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084832#M98947</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 popup FM name to get input from the user...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body help me on this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rayudu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084832#M98947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084833#M98948</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 using fm POPUP_GET_VALUES &lt;/P&gt;&lt;P&gt;  or POPUP_TO_GET_ONE_VALUE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In fact try searching for fms POPUP&lt;STRONG&gt;GET&lt;/STRONG&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_rcode,&lt;/P&gt;&lt;P&gt;      t_fields LIKE sval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_fields-tabname = 'VBAK'.&lt;/P&gt;&lt;P&gt;t_fields-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;APPEND t_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           = 'Test'&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;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RETURNCODE            = l_rcode&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    fields                = t_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;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;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_answer,&lt;/P&gt;&lt;P&gt;      l_value(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_GET_ONE_VALUE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    textline1            = 'Line1'&lt;/P&gt;&lt;P&gt;    TEXTLINE2            = 'Line2'&lt;/P&gt;&lt;P&gt;    TEXTLINE3            = 'Line3'&lt;/P&gt;&lt;P&gt;    titel                = 'Test'&lt;/P&gt;&lt;P&gt;    valuelength          = 30&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   ANSWER               = l_answer&lt;/P&gt;&lt;P&gt;   VALUE1               = l_value&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   TITEL_TOO_LONG       = 1&lt;/P&gt;&lt;P&gt;   OTHERS               = 2.&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;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084833#M98948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084834#M98949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this - POPUP_FOR_INFORMATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are quite a few function modules. You should be able to search with POP UP keyword and then the choose the right one for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ntoe : Reward points if this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084834#M98949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084835#M98950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try POC_CALL_USER_INPUT_POPUP..please reward point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084835#M98950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084836#M98951</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: in se37, try the keyword:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;popup_to_confirm&lt;/STRONG&gt; and you will get lots of function modules that can cater to your needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g: there is one FM that gives 3 buttons in a popup:&lt;/P&gt;&lt;P&gt;POPUP_WITH_3_BUTTONS_TO_CHOOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084836#M98951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: FM needed to get data from User</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084837#M98952</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;'popup_to_confirm' allows for 2 push buttons with custom text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example code for 'popup_with_3_buttons......':&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_WITH_3_BUTTONS_TO_CHOOSE'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;  DIAGNOSETEXT1 = 'CHOOSE'&lt;/P&gt;&lt;P&gt;  DIAGNOSETEXT2 = 'OR'&lt;/P&gt;&lt;P&gt;  TEXTLINE1 = 'PRESS CANCEL'&lt;/P&gt;&lt;P&gt;  TEXT_OPTION1 = '1: STUDENT TABLE'&lt;/P&gt;&lt;P&gt;  TEXT_OPTION2 = '2: COURSE TABLE'&lt;/P&gt;&lt;P&gt;  TEXT_OPTION3 = '3: TEACHER TABLE'&lt;/P&gt;&lt;P&gt;  TITEL = 'to maintain the database'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;  ANSWER = ans.&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 E012.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ans = '1'.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ZAJ_STU1'. &lt;/P&gt;&lt;P&gt;Elseif ans = '2'.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ZAJ_STU2'.&lt;/P&gt;&lt;P&gt;Elseif ans = '3'.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ZAJ_STU3'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 06:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-needed-to-get-data-from-user/m-p/1084837#M98952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T06:43:12Z</dc:date>
    </item>
  </channel>
</rss>

