<?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: Error handling from a background program storing XML data in Application Server? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489064#M2002388</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to get the error logs. In foreground, I can get the error but don't know how to handle background errors. It should be an automated process. Like, if any data loss happens system will resend data. Please share me some ideas. &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 05 Oct 2021 02:58:22 GMT</pubDate>
    <dc:creator>former_member308418</dc:creator>
    <dc:date>2021-10-05T02:58:22Z</dc:date>
    <item>
      <title>Error handling from a background program storing XML data in Application Server?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489062#M2002386</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
  &lt;P&gt;Good day.&lt;/P&gt;
  &lt;P&gt;I have some reports which will be running in the background and send XML data to the Application Server at a scheduled time. These XML files will be accessed and used by third-party software. Please give me an idea to handle any kind of data loss or error while transporting the files to Appl Server, as those will be running in the background. &lt;/P&gt;
  &lt;P&gt;Thanks &amp;amp; regards.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Oct 2021 09:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489062#M2002386</guid>
      <dc:creator>former_member308418</dc:creator>
      <dc:date>2021-10-04T09:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error handling from a background program storing XML data in Application Server?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489063#M2002387</link>
      <description>&lt;P&gt;There could be tens of valid answers for such a general question. Could you provide more details about what "send" mean you use, what you already have in mind as possible solutions? Moreover, is your question more about sending, more about XML generation, or more about logging the errors?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Oct 2021 10:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489063#M2002387</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-10-04T10:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error handling from a background program storing XML data in Application Server?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489064#M2002388</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to get the error logs. In foreground, I can get the error but don't know how to handle background errors. It should be an automated process. Like, if any data loss happens system will resend data. Please share me some ideas. &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 02:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489064#M2002388</guid>
      <dc:creator>former_member308418</dc:creator>
      <dc:date>2021-10-05T02:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error handling from a background program storing XML data in Application Server?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489065#M2002389</link>
      <description>&lt;P&gt;I guess you want to store the log in database or something like that, so that to later view the log. It's also something which can be useful in foreground.&lt;/P&gt;&lt;P&gt;One possible solution is to use the API of &lt;STRONG&gt;Business Application Log&lt;/STRONG&gt;, that you can later view with transaction code &lt;B&gt;SLG1&lt;/B&gt;.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'BAL_LOG_CREATE'&lt;BR /&gt;    ...&lt;BR /&gt;CALL FUNCTION 'BAL_LOG_MSG_ADD'         " to repeat for each message&lt;BR /&gt;    ...&lt;BR /&gt;CALL FUNCTION 'BAL_DB_SAVE'&lt;BR /&gt;   ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You can find more information in the forum for each function module, even complete code, each function module has its own documentation, and SAP Library also provides complete &lt;STRONG&gt;Business Application Log &lt;/STRONG&gt;documentation about the concept.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 03:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489065#M2002389</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-10-05T03:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error handling from a background program storing XML data in Application Server?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489066#M2002390</link>
      <description>&lt;P&gt;Thanks for the information. I will check these FMs.&lt;/P&gt;&lt;P&gt;Best ragards.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 04:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-from-a-background-program-storing-xml-data-in-application/m-p/12489066#M2002390</guid>
      <dc:creator>former_member308418</dc:creator>
      <dc:date>2021-10-05T04:53:13Z</dc:date>
    </item>
  </channel>
</rss>

