<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472879#M556151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check FM POPUP_DISPLAY_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2007 09:27:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-25T09:27:20Z</dc:date>
    <item>
      <title>pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472878#M556150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to get the pop up screen ?the first screen as display button ,if we press that button then pop up screen has to come with same information?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472878#M556150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472879#M556151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check FM POPUP_DISPLAY_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:27:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472879#M556151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472880#M556152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the function module ACC_MSG_TEXT_POPUP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472880#M556152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472881#M556153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u have value in internal table which has to be displayed in the popup then use,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          endpos_col         = 100&lt;/P&gt;&lt;P&gt;          endpos_row         = 22&lt;/P&gt;&lt;P&gt;          startpos_col       = 50&lt;/P&gt;&lt;P&gt;          startpos_row       = 2&lt;/P&gt;&lt;P&gt;          titletext          = 'Billing plans'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to display some texts&lt;/P&gt;&lt;P&gt;then use &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    TITEL              = 'Contract data'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     textline1          = l_txt1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    TEXTLINE2          = l_txt2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    START_COLUMN       = 20&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    START_ROW          = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472881#M556153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472882#M556154</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 check the sy-ucomm (of the button), and use FM POPUP_TO_DISPLAY_TEXT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472882#M556154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472883#M556155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kotireddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check with these FM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_LOSS_OF_DATA	Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_STEP	Create a dialog box in which you make a question whether the user wishes to perform the step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_MESSAGE	Create a dialog box in which you inform the user about a specific decision point during an action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if usefullll....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472883#M556155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472884#M556156</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;for this u can use FM's and CALL SCREEN ST as.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI module of screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'DISP'. [F.code assigned for push button in Screen 100 ]&lt;/P&gt;&lt;P&gt;   call screen 200 starting at 23 56.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;................&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use F.modules as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give POP_UP* in SE37. then u can get list of all F.M's used for POP ups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472884#M556156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472885#M556157</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 with these also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_DISPLAY_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_WITH_TABLE_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 09:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472885#M556157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T09:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472886#M556158</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;USE THIS fm POPUP_TO_DECIDE_INFO . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters required for this FM is the Text you require to display on the popup window.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two buttons automatically comes on this window a Tick and a x sign if you click tick the output varaible ANSWER is J else it is A . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 15:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up/m-p/2472886#M556158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T15:35:22Z</dc:date>
    </item>
  </channel>
</rss>

