<?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 creating file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407819#M196714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reasons looks like the OPEN DATASET command is failing in specific cases. If you are passing the name of the directory / file name at rutime, it could be becuase of the access issues for the specific directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jun 2006 04:20:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-30T04:20:44Z</dc:date>
    <item>
      <title>Error while creating file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407818#M196713</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;I am executing a program in background which converts the file into PDF and sends email to the respective users. It is working fine when i execute in foreground. But, when i schedule this program in background, sometimes it runs successfully, while most of the time it gives the following error. Can anyone help me as why it is happening ? There r many pgms which r running in background.&lt;/P&gt;&lt;P&gt;This is the log file &lt;/P&gt;&lt;P&gt;Date          time      Message text&lt;/P&gt;&lt;P&gt;30.06.2006  05:00:07  Job started  &lt;/P&gt;&lt;P&gt;30.06.2006  05:00:07 Step 001 started (program ZSDSALEXPERF, variant , user ID ITABAP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;30.06.2006  05:05:42  TEMSE_OPEN o.k. for SPOOL0000018612&lt;/P&gt;&lt;P&gt;30.06.2006  05:05:53  PDF data of length 1270908 created&lt;/P&gt;&lt;P&gt;30.06.2006  05:06:04  ABAP/4 processor: DATASET_NOT_OPEN&lt;/P&gt;&lt;P&gt;30.06.2006  05:06:04  Job cancelled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;sinthu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 04:00:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407818#M196713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T04:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407819#M196714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reasons looks like the OPEN DATASET command is failing in specific cases. If you are passing the name of the directory / file name at rutime, it could be becuase of the access issues for the specific directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 04:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407819#M196714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T04:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407820#M196715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Error is comes out at OPEN DATASET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either the file is not existing or access to that file was refused. Or during operation on OPEN DATASET, the file was closed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 04:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407820#M196715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T04:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407821#M196716</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;check the following code &lt;/P&gt;&lt;P&gt;data: v_hex type x,&lt;/P&gt;&lt;P&gt;v_bit type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open dataset file_name for input in binary mode encoding default.&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;read dataset file_name into v_hex.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;close dataset file_name&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 8 times.&lt;/P&gt;&lt;P&gt;get bit sy-index of v_hex into v_bit.&lt;/P&gt;&lt;P&gt;write v_bit no-gap.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 06:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-file/m-p/1407821#M196716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T06:06:57Z</dc:date>
    </item>
  </channel>
</rss>

