<?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: Reg. Write message to Spool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583511#M1434760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;whenever there is some message is there during back ground&lt;/P&gt;&lt;P&gt;that will be captured in spool&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Feb 2010 09:37:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-17T09:37:49Z</dc:date>
    <item>
      <title>Reg. Write message to Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583509#M1434758</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 haev one interface program and whish is alwasy running in background. when this program runs and if there si any error then i have to pass to Spool for future reference. so i wanted to know any funcion module to handle it or do i need to write any code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plse let me knw hwo to handle it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thans&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yerukala Setty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 09:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583509#M1434758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-17T09:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reg. Write message to Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583510#M1434759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the program is already running in background, and it outputs or writes the error messages it encounters, it will automatically be available in the spool. Just make sure you write the error messages if it encounters any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 09:26:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583510#M1434759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-17T09:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reg. Write message to Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583511#M1434760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;whenever there is some message is there during back ground&lt;/P&gt;&lt;P&gt;that will be captured in spool&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 09:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583511#M1434760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-17T09:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reg. Write message to Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583512#M1434761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; whenever there is some message is there during back ground&lt;/P&gt;&lt;P&gt;&amp;gt; that will be captured in spoolr&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AFAIK the messages will be captured in the job log &amp;amp; not in the spool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@OP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the messages in the job log then no need of any extra coding. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: V_LOG TYPE STRING.

MESSAGE &amp;lt;message&amp;gt; INTO V_LOG. "This is not throw the message but transfer the msg short text to the variable
WRITE V_LOG.

MESSAGE &amp;lt;message&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW why do you need to write the messages in the spool ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 10:01:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-message-to-spool/m-p/6583512#M1434761</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-17T10:01:15Z</dc:date>
    </item>
  </channel>
</rss>

