<?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 problem in report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779026#M335840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;Please change the message type to S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from lfa1 into lt_lfa1 where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*processing&lt;/P&gt;&lt;P&gt;else &lt;/P&gt;&lt;P&gt;message &amp;lt;u&amp;gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;S&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/u&amp;gt;001(zal).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the it will appear in GREEN color, not in the yellow color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this problem is solved kindly mark it as SOLVED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Dec 2006 11:43:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-18T11:43:56Z</dc:date>
    <item>
      <title>message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779021#M335835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one problem in message display in report. I wanted to display my message in status bar of screen as yellow error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from lfa1 into lt_lfa1 where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*processing&lt;/P&gt;&lt;P&gt;else &lt;/P&gt;&lt;P&gt;message I001(zal).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if the records are not found then it will display the information message as popup.&lt;/P&gt;&lt;P&gt;but my requirement is like i have to display the message in status bar of screen as yellow error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Dec 2006 07:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779021#M335835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-16T07:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779022#M335836</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;Change ur code like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from lfa1 into lt_lfa1 where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*processing&lt;/P&gt;&lt;P&gt;else &lt;/P&gt;&lt;P&gt;message &amp;lt;b&amp;gt;W&amp;lt;/b&amp;gt;001(zal).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Dec 2006 07:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779022#M335836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-16T07:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779023#M335837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * from lfa1 into lt_lfa1 where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*processing&lt;/P&gt;&lt;P&gt;else &lt;/P&gt;&lt;P&gt;message W001(zal).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSTEAD OF I001(ZA1) USE W001(ZA1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Dec 2006 08:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779023#M335837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-16T08:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779024#M335838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbaad635c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbaad635c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Dec 2006 08:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779024#M335838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-16T08:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779025#M335839</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;You can not use message type W in start-of -selection event. This will terminate the report. It behaves as type E message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to get message in status bar, you need to use message type S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will not be yellow color but in green. But you can mention as WARNING: followed by message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Dec 2006 08:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779025#M335839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-16T08:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779026#M335840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;Please change the message type to S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from lfa1 into lt_lfa1 where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*processing&lt;/P&gt;&lt;P&gt;else &lt;/P&gt;&lt;P&gt;message &amp;lt;u&amp;gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;S&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/u&amp;gt;001(zal).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the it will appear in GREEN color, not in the yellow color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this problem is solved kindly mark it as SOLVED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 11:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779026#M335840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T11:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: message problem in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779027#M335841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the following and your message will appear in yellow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message s001(zal) display like 'W'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 14:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-problem-in-report/m-p/1779027#M335841</guid>
      <dc:creator>former_member378318</dc:creator>
      <dc:date>2006-12-18T14:36:05Z</dc:date>
    </item>
  </channel>
</rss>

