<?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: error message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433672#M544145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate zmessage1 zmessage2 zmessage3 into &amp;lt;b&amp;gt;zmessage4&amp;lt;/b&amp;gt; separated by space.&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 = 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;&amp;lt;b&amp;gt;message_var1 = zmessage4&amp;lt;/b&amp;gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jul 2007 11:51:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-05T11:51:40Z</dc:date>
    <item>
      <title>error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433670#M544143</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>Thu, 05 Jul 2007 11:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433670#M544143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T11:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433671#M544144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead os &amp;amp; &amp;amp; &amp;amp; &amp;amp;&lt;/P&gt;&lt;P&gt;use &amp;amp;1 &amp;amp;2 &amp;amp;3 &amp;amp;4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 11:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433671#M544144</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-07-05T11:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433672#M544145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate zmessage1 zmessage2 zmessage3 into &amp;lt;b&amp;gt;zmessage4&amp;lt;/b&amp;gt; separated by space.&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 = 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;&amp;lt;b&amp;gt;message_var1 = zmessage4&amp;lt;/b&amp;gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 11:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message/m-p/2433672#M544145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T11:51:40Z</dc:date>
    </item>
  </channel>
</rss>

