<?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: HELP IN MESSAGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501737#M232278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi thomas&lt;/P&gt;&lt;P&gt;the problem that when i use this FM i get a long line of the message&lt;/P&gt;&lt;P&gt;and i want to seperated it&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 11:56:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T11:56:27Z</dc:date>
    <item>
      <title>HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501735#M232276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;i wrote this code when i want to show message&lt;/P&gt;&lt;P&gt; MESSAGE E888(SABAPDOCU) WITH TEXT-001 LV_PRODCODE_TMP TEXT-003 LV_TODATE.&lt;/P&gt;&lt;P&gt;the problme i get the message in this format:&lt;/P&gt;&lt;P&gt;The production code is incorrect fix to 62 The experation date is incorrect please fix it to 01.10.2006&lt;/P&gt;&lt;P&gt;i want that each message will be in seperate row &lt;/P&gt;&lt;P&gt;for example i want that this message will be like:&lt;/P&gt;&lt;P&gt;1. The production code is incorrect fix to 62&lt;/P&gt;&lt;P&gt;2. The experation date is incorrect please fix it to 01.10.2006&lt;/P&gt;&lt;P&gt;HOW CAN I FIX IT&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501735#M232276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501736#M232277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yossi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of MESSAGE use FM &amp;lt;b&amp;gt;POPUP_DISPLAY_MESSAGE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501736#M232277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501737#M232278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi thomas&lt;/P&gt;&lt;P&gt;the problem that when i use this FM i get a long line of the message&lt;/P&gt;&lt;P&gt;and i want to seperated it&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501737#M232278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501738#M232279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;How about FM: JVA_POPUP_TO_DISPLAY_TEXT
Give two lines for two lines.

Sample Code:

data: l_line1 type string,
      l_line2 type string,
      l_title type string.

l_title = 'Information Message'.
move '1. The production code is incorrect fix to 62' to l_line1.
move '2. The experation date is incorrect please fix it to 01.10.2006'
to l_line2.


CALL FUNCTION 'JVA_POPUP_TO_DISPLAY_TEXT'
  EXPORTING
   TITEL              = l_title
    TEXTLINE1          = l_line1
   TEXTLINE2          = l_line2
*   START_COLUMN       = 25
*   START_ROW          = 6
          .

Kind Regards
Eswar&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Eswar Rao  Boddeti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501738#M232279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501739#M232280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;i wrong and i need help.&lt;/P&gt;&lt;P&gt;The FM  is great but it not work like MESSAGE i mean that the when i use the message after i press OK or NOT the foucs back to the screen that i was but when i use the FM i lose the foucs&lt;/P&gt;&lt;P&gt;maybe there is another FM that can help me&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501739#M232280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501740#M232281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yossi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why not &amp;lt;b&amp;gt;POPUP_CONTINUE_YES_NO&amp;lt;/b&amp;gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501740#M232281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501741#M232282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Hi Yossi

   Can you make your query more clear. I couldnt figure 
out the problem. 
   For me i can come back to the same screen.

Kind Regards
Eswar&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Eswar Rao  Boddeti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:38:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501741#M232282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501742#M232283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use the transction qe51n&lt;/P&gt;&lt;P&gt;and than i insert plant 1201 choose row and then press edit and than i get a scrren  i changed some things in the screen and then i want a message if i change the mesaage to fm it not work and back to the main screen and not to edit screen.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501742#M232283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: HELP IN MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501743#M232284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yossi,&lt;/P&gt;&lt;P&gt; Immeadiately after the call to the FM, write the statement EXIT. and see if it makes any difference.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-message/m-p/1501743#M232284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:59:28Z</dc:date>
    </item>
  </channel>
</rss>

