<?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 message  raising in functional module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427658#M823272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to raise the message  using in the  functional module.?&lt;/P&gt;&lt;P&gt;plz give the small coding and what are the procedure ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Feb 2008 06:41:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-16T06:41:35Z</dc:date>
    <item>
      <title>message  raising in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427658#M823272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to raise the message  using in the  functional module.?&lt;/P&gt;&lt;P&gt;plz give the small coding and what are the procedure ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 06:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427658#M823272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T06:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: message  raising in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427659#M823273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its similar to program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for exmaple a example of error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if  input gt '10'.&lt;/P&gt;&lt;P&gt;      message e063(vl) with '10'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;anya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 06:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427659#M823273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T06:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: message  raising in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427660#M823274</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 FM at the Exceptions tab u can maintain error messages like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NO_MORE_DATA&lt;/P&gt;&lt;P&gt;ERROR_PASSED_TO_MESS_HANDLER,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that u can FM source code like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case i_dsource.&lt;/P&gt;&lt;P&gt;      when 'ZCASH_FLOW'.&lt;/P&gt;&lt;P&gt;      when others.&lt;/P&gt;&lt;P&gt;        if 1 = 2. message e009(r3). endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;this is a typical log call. Please write every error message like this&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        log_write 'E'                  "message type&lt;/P&gt;&lt;P&gt;                  'R3'                 "message class&lt;/P&gt;&lt;P&gt;                  '009'                "message number&lt;/P&gt;&lt;P&gt;                  i_dsource   "message variable 1&lt;/P&gt;&lt;P&gt;                  ' '.                 "message variable 2&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;raise error_passed_to_mess_handler.&lt;/STRONG&gt;    endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      close cursor s_cursor.&lt;/P&gt;&lt;P&gt;      raise no_more_data.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 06:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-raising-in-functional-module/m-p/3427660#M823274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T06:45:28Z</dc:date>
    </item>
  </channel>
</rss>

