<?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: MESSAGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467634#M554347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;Just check the code below&lt;/P&gt;&lt;P&gt;Message class: ZAN&lt;/P&gt;&lt;P&gt;Message number 001 &amp;amp;&amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:z_msg1 type SY-MSGV1  value 'Hi',&lt;/P&gt;&lt;P&gt;     z_msg2 type SY-MSGV2  value 'sap',&lt;/P&gt;&lt;P&gt;     z_msg3 type SY-MSGV3  value 'by'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AQ_INT_SHOW_MESSAGE_AS_POPUP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   POPUP_POS_X                  = 5&lt;/P&gt;&lt;P&gt;   POPUP_POS_Y                  = 5&lt;/P&gt;&lt;P&gt;   message_class                = 'ZAN'&lt;/P&gt;&lt;P&gt;   message_number               = '001'&lt;/P&gt;&lt;P&gt;   message_type                 = 'I'&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR1                 = z_msg1&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR2                 = z_msg2&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR3                 = z_msg3&lt;/P&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;I think this will help you, please reward points if it is helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Antony Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 06:10:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T06:10:56Z</dc:date>
    <item>
      <title>MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467631#M554344</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 am not getting message in pop up window,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here three messages are passed in to message number 15 of message class zc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in message class zc for message number 15 i kept &amp;amp; &amp;amp; &amp;amp; &amp;amp; &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wen i execute the transaction i am getting popup window showing only message 1 followed by &amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wen i debug the program three messages contain text in it. but it is displaying only&lt;/P&gt;&lt;P&gt;1st message in popwindow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab_bills.&lt;/P&gt;&lt;P&gt;CLEAR itab_bills_tmp.&lt;/P&gt;&lt;P&gt;REFRESH itab_bills_tmp.&lt;/P&gt;&lt;P&gt;SELECT sdpref billno&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE itab_bills_tmp&lt;/P&gt;&lt;P&gt;FROM zproto_bills_dt&lt;/P&gt;&lt;P&gt;WHERE "sdpref &amp;lt;&amp;gt; itab_bills-sdpref AND&lt;/P&gt;&lt;P&gt;billno &amp;lt;&amp;gt; itab_bills-billno AND&lt;/P&gt;&lt;P&gt;requestno = itab_bills-requestno AND&lt;/P&gt;&lt;P&gt;requestyear = itab_bills-requestyear.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;LOOP AT itab_bills_tmp.&lt;/P&gt;&lt;P&gt;CLEAR : zmessage1, zmessage2, zmessage3.&lt;/P&gt;&lt;P&gt;CONCATENATE 'Job Request No' itab_bills-requestno 'Year'&lt;/P&gt;&lt;P&gt;itab_bills-requestyear INTO zmessage1 SEPARATED BY space.&lt;/P&gt;&lt;P&gt;CONCATENATE 'is already assigned to SDP Ref No'&lt;/P&gt;&lt;P&gt;itab_bills_tmp-sdpref INTO zmessage2 SEPARATED BY space.&lt;/P&gt;&lt;P&gt;CONCATENATE '&amp;amp; Bill No' itab_bills_tmp-billno INTO zmessage3&lt;/P&gt;&lt;P&gt;SEPARATED BY space.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AQ_INT_SHOW_MESSAGE_AS_POPUP'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;popup_pos_x = 20&lt;/P&gt;&lt;P&gt;popup_pos_y = 4&lt;/P&gt;&lt;P&gt;message_class = 'ZC'&lt;/P&gt;&lt;P&gt;message_number = '015'&lt;/P&gt;&lt;P&gt;message_type = 'I'&lt;/P&gt;&lt;P&gt;message_var1 = zmessage1&lt;/P&gt;&lt;P&gt;message_var2 = zmessage2&lt;/P&gt;&lt;P&gt;message_var3 = zmessage3&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;message_var4 =&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;INTERNAL_ERROR = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE_DOES_NOT_EXIST = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 05:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467631#M554344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T05:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467632#M554345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In ZC mesage class for your message number , have you maintained '&amp;amp;'?&lt;/P&gt;&lt;P&gt;Please write it.&lt;/P&gt;&lt;P&gt;Reward if useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 05:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467632#M554345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T05:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467633#M554346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; As per this Function module it will show the one Message and 3 Variables&lt;/P&gt;&lt;P&gt;But check your message parameter Datatype u r concatenating..&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;P&gt;Reward if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467633#M554346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467634#M554347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;Just check the code below&lt;/P&gt;&lt;P&gt;Message class: ZAN&lt;/P&gt;&lt;P&gt;Message number 001 &amp;amp;&amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:z_msg1 type SY-MSGV1  value 'Hi',&lt;/P&gt;&lt;P&gt;     z_msg2 type SY-MSGV2  value 'sap',&lt;/P&gt;&lt;P&gt;     z_msg3 type SY-MSGV3  value 'by'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AQ_INT_SHOW_MESSAGE_AS_POPUP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   POPUP_POS_X                  = 5&lt;/P&gt;&lt;P&gt;   POPUP_POS_Y                  = 5&lt;/P&gt;&lt;P&gt;   message_class                = 'ZAN'&lt;/P&gt;&lt;P&gt;   message_number               = '001'&lt;/P&gt;&lt;P&gt;   message_type                 = 'I'&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR1                 = z_msg1&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR2                 = z_msg2&lt;/P&gt;&lt;P&gt;   MESSAGE_VAR3                 = z_msg3&lt;/P&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;I think this will help you, please reward points if it is helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Antony Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467634#M554347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467635#M554348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get the answer . If not let me know, otherwise reward points to my help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2007 08:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/2467635#M554348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-07T08:30:12Z</dc:date>
    </item>
  </channel>
</rss>

