<?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 while transfering data to Apps server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949164#M1488448</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; Hi!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Yes , indeed , I am checking the value for sy-subrc and thats not zero , its 8 after open dataset. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That's the sort of thing you have to include in the initial post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jun 2010 20:49:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-07T20:49:44Z</dc:date>
    <item>
      <title>Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949158#M1488442</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;I have created an exit to transfer the data of a query directly onto the apps server and I get this error. Could anyone pls let me know how to rectify this please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt;The exception, which is assigned to class 'CX_SY_FILE_OPEN_MODE', was not&lt;/P&gt;&lt;P&gt; caught in&lt;/P&gt;&lt;P&gt;procedure "EXIT_RSAQEXCE_001" "(FUNCTION)", nor was it propagated by a RAISING&lt;/P&gt;&lt;P&gt; clause.&lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have anticipated that the&lt;/P&gt;&lt;P&gt;exception would occur, the current program is terminated.&lt;/P&gt;&lt;P&gt;The reason for the exception is:&lt;/P&gt;&lt;P&gt;When accessing the file "/NAL.LOCAL/APPLICATION/SAP/IFACESDEV/QUERYOUT", the&lt;/P&gt;&lt;P&gt; system recognized that this file is&lt;/P&gt;&lt;P&gt;not open. Therefore, the file cannot be accessed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Retrieve the app server filename
select single low into l_file
    from tvarvc
    where name = 'Z_QUERY_DOWNLOAD_FILENAME'.

open dataset l_file for output
  in text mode encoding default.

* Transfer the data
loop at datatab.
  clear &amp;lt;ls_row&amp;gt;.
  move-corresponding datatab to &amp;lt;ls_row&amp;gt;.
  transfer &amp;lt;ls_row&amp;gt; to l_file.
  append &amp;lt;ls_row&amp;gt; to &amp;lt;lt_table&amp;gt;.
endloop.

close dataset l_file.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 17:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949158#M1488442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T17:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949159#M1488443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any suggestions please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 17:55:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949159#M1488443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T17:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949160#M1488444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first why dont you check sy-subrc = 0 for both select and open data set statement. then recheck if the path exist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 18:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949160#M1488444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T18:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949161#M1488445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file was not opened successfully using the OPEN statement. You can check it using sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transfer the data only if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is happening in ur case is that the file is not being opened successfully, and u are trying to transfer data into it, hence the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raveesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 18:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949161#M1488445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T18:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949162#M1488446</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;Yes , indeed , I am checking the value for sy-subrc and thats not zero , its 8 after open dataset. I meant to ask is there any particular reason for that to happen, as the file path does exist and everything seems to be fine. I am not preety sure about the authorizations , if I have it or not but all others areas are fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 18:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949162#M1488446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T18:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949163#M1488447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's likely that your id  or SAP system do not have appropriate authority to the folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do Open dataset for output in text mode encoding default and you get a return code of 8, then the open failed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 20:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949163#M1488447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T20:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error while transfering data to Apps server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949164#M1488448</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; Hi!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Yes , indeed , I am checking the value for sy-subrc and thats not zero , its 8 after open dataset. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That's the sort of thing you have to include in the initial post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 20:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-transfering-data-to-apps-server/m-p/6949164#M1488448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-07T20:49:44Z</dc:date>
    </item>
  </channel>
</rss>

