<?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 MESSAGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985148#M72836</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 this one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  data: answer    TYPE c.

  CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
       EXPORTING
            defaultoption = 'N'
            textline1     = "Your question"
            textline2     = "continue the question"
            titel         = ' '
            start_column  = 35
            start_row     = 6
       IMPORTING
            answer        = answer.
  IF answer EQ 'J' OR answer EQ 'Y'.
    l_inact = ' '.
  ELSEIF answer EQ 'N'.
    l_inact = 'X'.
  ELSEIF answer EQ 'A'.
    EXIT.
  ENDIF.

REPORT ZPOPUPCONFIRM.

DATA: X_ANS(1) TYPE C.

call function 'POPUP_TO_CONFIRM_STEP'
exporting
* DEFAULTOPTION = 'Y'
textline1 = 'Do you want to continue'
* TEXTLINE2 = ' '
titel = 'Please Confirm'
* START_COLUMN = 25
* START_ROW = 6
* CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = X_ANS.

WRITE: / X_ANS.

*-- End of Program

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Sep 2005 03:30:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-26T03:30:43Z</dc:date>
    <item>
      <title>POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985145#M72833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how would i create popup message to inform the receiver that she/he has an email ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985145#M72833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985146#M72834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there are many POPUP* FM's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can you POPUP_TO_INFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more FM type POPUP* in se37 and press F4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:22:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985146#M72834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985147#M72835</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; Some POPUP Functions are,&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;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;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;POPUP_TO_CONFIRM_WITH_VALUE	Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.	&lt;/P&gt;&lt;P&gt;POPUP_TO_DECIDE	Provide user with several choices as radio buttons	&lt;/P&gt;&lt;P&gt;POPUP_TO_DECIDE_WITH_MESSAGE	Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.	&lt;/P&gt;&lt;P&gt;POPUP_TO_DISPLAY_TEXT	Create a dialog box in which you display a two line message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985147#M72835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985148#M72836</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 this one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  data: answer    TYPE c.

  CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
       EXPORTING
            defaultoption = 'N'
            textline1     = "Your question"
            textline2     = "continue the question"
            titel         = ' '
            start_column  = 35
            start_row     = 6
       IMPORTING
            answer        = answer.
  IF answer EQ 'J' OR answer EQ 'Y'.
    l_inact = ' '.
  ELSEIF answer EQ 'N'.
    l_inact = 'X'.
  ELSEIF answer EQ 'A'.
    EXIT.
  ENDIF.

REPORT ZPOPUPCONFIRM.

DATA: X_ANS(1) TYPE C.

call function 'POPUP_TO_CONFIRM_STEP'
exporting
* DEFAULTOPTION = 'Y'
textline1 = 'Do you want to continue'
* TEXTLINE2 = ' '
titel = 'Please Confirm'
* START_COLUMN = 25
* START_ROW = 6
* CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = X_ANS.

WRITE: / X_ANS.

*-- End of Program

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985148#M72836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985149#M72837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where i can put the userid?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:36:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985149#M72837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985150#M72838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example my user id is 'xx1' then im gonna send popup message to 'xx2'. how should i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985150#M72838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985151#M72839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM MESSAGE_SEND_AS_MAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985151#M72839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985152#M72840</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 function,&lt;/P&gt;&lt;P&gt;TH_POPUP	Display a popup system message on a specific users screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985152#M72840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T03:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985153#M72841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Donna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if this is applicable, but if you are sending an email form SAP to a user's SAP Inbox (using something like FM SO_NEW_DOCUMENT_SEND_API1), you can make sure that the "Express" value has a "X" in the receiver's address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will cause a message to pop up informing the user that they have a new message in their inbox. It also provides a quick link from the pop up to send them to their SAP Inbox.&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;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985153#M72841</guid>
      <dc:creator>former_member221770</dc:creator>
      <dc:date>2005-09-26T03:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: POPUP MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985154#M72842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'TH_POPUP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CLIENT               = SY-MANDT &lt;/P&gt;&lt;P&gt;    USER                 = 'XX2'&lt;/P&gt;&lt;P&gt;    MESSAGE              = 'You have new mail.'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGE_LEN          = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUT_BLANKS           = ' '&lt;/P&gt;&lt;/LI&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;  USER_NOT_FOUND       = 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;&lt;/P&gt;&lt;P&gt;This will send a popup to user xx2 if he is logged on to the current client . Else you can pass another client here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 04:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-message/m-p/985154#M72842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T04:03:15Z</dc:date>
    </item>
  </channel>
</rss>

