<?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: DCL WRITE/SYMBOL Failing - Bug? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920639#M32599</link>
    <description>Ignore me (having a stupid day). I was opening the file twice, once read only and the write, hence the FAC error.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
    <pubDate>Wed, 24 Aug 2005 06:06:05 GMT</pubDate>
    <dc:creator>Robert Atkinson</dc:creator>
    <dc:date>2005-08-24T06:06:05Z</dc:date>
    <item>
      <title>DCL WRITE/SYMBOL Failing - Bug?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920638#M32598</link>
      <description>Here's a great one for you!&lt;BR /&gt;&lt;BR /&gt;I have a set of routines (DCF) designed to handle files and records. The routines work fine across the system.&lt;BR /&gt;&lt;BR /&gt;I've recently decided to take advantage of the 7.3-2 increased DCL limits and am writing a record of 500 bytes.&lt;BR /&gt;&lt;BR /&gt;As you can see, the attempt to write a record fails. If I then close the file, re-open it and retry the write, it's sucessful.&lt;BR /&gt;&lt;BR /&gt;I suspect this is an internal DCL/RMS bug, but I'd like your opinion.&lt;BR /&gt;&lt;BR /&gt;If anyone's interested in the full code, drop me your email address to ratkinsonuk_at_tbs-ltd_dot_co_dot_uk.&lt;BR /&gt;&lt;BR /&gt;$       !&lt;BR /&gt;$       OPEN /READ /WRITE /SHARE /ERROR=OPEN_MASTERFILE_ERROR OUTFILE DSK$EMAILDIST&lt;BR /&gt;...........&lt;BR /&gt;$       SH LOG OUTFILE*&lt;BR /&gt;&lt;BR /&gt;(LNM$PROCESS_TABLE)&lt;BR /&gt;&lt;BR /&gt;  "OUTFILE" = "_$1$DGA100"&lt;BR /&gt;&lt;BR /&gt;(LNM$JOB_811F26C0)&lt;BR /&gt;&lt;BR /&gt;(LNM$GROUP_000250)&lt;BR /&gt;&lt;BR /&gt;(LNM$SYSTEM_TABLE)&lt;BR /&gt;&lt;BR /&gt;(LNM$SYSCLUSTER_TABLE)&lt;BR /&gt;&lt;BR /&gt;(DECW$LOGICAL_NAMES)&lt;BR /&gt;$       WRITE /SYMBOL OUTFILE DCF$EMD_RECORD&lt;BR /&gt;%RMS-F-FAC, record operation not permitted by specified file access (FAC)&lt;BR /&gt;$ERROR:&lt;BR /&gt;$       DCF$ACTION == "TRUE"&lt;BR /&gt;$       !&lt;BR /&gt;$       VERIFY = 1&lt;BR /&gt;$       !&lt;BR /&gt;$       EXIT %X00004&lt;BR /&gt;%NONAME-F-NOMSG, Message number 00000004&lt;BR /&gt;GAMMA_ROB$$ CLOSE OUTFILE&lt;BR /&gt;GAMMA_ROB$$ OPEN /READ /WRITE /SHARE /ERROR=OPEN_MASTERFILE_ERROR OUTFILE DSK$EMAILDIST&lt;BR /&gt;GAMMA_ROB$$ WRITE /SYMBOL OUTFILE DCF$EMD_RECORD&lt;BR /&gt;GAMMA_ROB$$ CLOSE OUTFILE&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 05:27:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920638#M32598</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-08-24T05:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: DCL WRITE/SYMBOL Failing - Bug?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920639#M32599</link>
      <description>Ignore me (having a stupid day). I was opening the file twice, once read only and the write, hence the FAC error.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
      <pubDate>Wed, 24 Aug 2005 06:06:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920639#M32599</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-08-24T06:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: DCL WRITE/SYMBOL Failing - Bug?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920640#M32600</link>
      <description>Robert,&lt;BR /&gt;"bad days" remembers me a song of REM.&lt;BR /&gt;Stop your work for a while and give your congratulation to some promote gurus in this forum.&lt;BR /&gt;Have a nice day!&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 07:57:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920640#M32600</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-24T07:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: DCL WRITE/SYMBOL Failing - Bug?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920641#M32601</link>
      <description>This leaves the question, why the procedure didn't proceed to the error label.&lt;BR /&gt;&lt;BR /&gt;Note:&lt;BR /&gt;I normally add a CLOSE/NOLOG... before every OPEN, just in case.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Wed, 24 Aug 2005 08:48:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-write-symbol-failing-bug/m-p/4920641#M32601</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2005-08-24T08:48:34Z</dc:date>
    </item>
  </channel>
</rss>

