<?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 with text element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861559#M363689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MESSAGE W002(XX) with TEXT-002.  " Change XX to ur Message Class&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Feb 2007 07:05:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-01T07:05:16Z</dc:date>
    <item>
      <title>Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861554#M363684</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;&lt;/P&gt;&lt;P&gt;I want to display one warning message in the code bolow with the text element created .&lt;/P&gt;&lt;P&gt;text enetered in the text element 002- "carrier partmer function not found for delivery &amp;amp;i_xvttp_tab-vbeln ."&lt;/P&gt;&lt;P&gt;(will it enter the delivery no)&lt;/P&gt;&lt;P&gt;code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF l_t_vlkpa OCCURS 0,&lt;/P&gt;&lt;P&gt;        kunde LIKE vlkpa-kunde,&lt;/P&gt;&lt;P&gt;        vbeln LIKE i_xvttp_tab-vbeln,&lt;/P&gt;&lt;P&gt;        parvw LIKE vlkpa-parvw,&lt;/P&gt;&lt;P&gt;        END OF l_t_vlkpa.&lt;/P&gt;&lt;P&gt;  CONSTANTS c_pfunc TYPE char2 VALUE 'SP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF i_xvttp_tab[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT kunde vbeln parvw INTO TABLE l_t_vlkpa&lt;/P&gt;&lt;P&gt;    FROM vlkpa&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN i_xvttp_tab&lt;/P&gt;&lt;P&gt;      WHERE vbeln = i_xvttp_tab-vbeln AND&lt;/P&gt;&lt;P&gt;            parvw = c_pfunc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT i_xvttp_tab.&lt;/P&gt;&lt;P&gt;      READ TABLE l_t_vlkpa WITH KEY vbeln = i_xvttp_tab-vbeln.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        READ TABLE i_xvttk_tab WITH KEY tknum = i_xvttp_tab-tknum.&lt;/P&gt;&lt;P&gt;        IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          i_xvttk_tab-tdlnr = l_t_vlkpa-kunde.&lt;/P&gt;&lt;P&gt;          MODIFY i_xvttk_tab INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;*&amp;lt;b&amp;gt;      message Text-002 TYPE 'W'.&lt;/P&gt;&lt;P&gt;      Message W002.&lt;/P&gt;&lt;P&gt;*message I002.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MESSAGE 'Carrier partner function not found.' TYPE 'W'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;(want to remove all this and just enter a warning message with text element showing the delivery number,)&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer will be rewarded.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 06:57:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861554#M363684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T06:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861555#M363685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;message w000 with text-001 'i_xvttp_tab-vbeln'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861555#M363685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861556#M363686</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;In the text you need to write ''Carrier partner function not found &amp;amp;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Program , write this  ....&lt;/P&gt;&lt;P&gt;message w000 with text-001 'i_xvttp_tab-vbeln'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861556#M363686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861557#M363687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cod e like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;message w000 with text-002 i_xvttp_tab-vbeln .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves ur problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861557#M363687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861558#M363688</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;It is not advisible to hard code the message.&lt;/P&gt;&lt;P&gt;While transporting it gives error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a text element &lt;/P&gt;&lt;P&gt;call the same in your message with the itab field and the message type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861558#M363688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861559#M363689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MESSAGE W002(XX) with TEXT-002.  " Change XX to ur Message Class&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:05:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861559#M363689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Message with text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861560#M363690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a message in a message class using transaction SE91&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say the message class is ZZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a message no 000 in it. Maintain the text as ''Carrier partner function not found &amp;amp;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Program , write this ....&lt;/P&gt;&lt;P&gt;message w000(ZZ) with i_xvttp_tab-vbeln.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 07:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-text-element/m-p/1861560#M363690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T07:11:19Z</dc:date>
    </item>
  </channel>
</rss>

