<?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 %RMS-W-RTB when execute DCL script in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174778#M42381</link>
    <description>Hi &lt;BR /&gt;&lt;BR /&gt;Please, I need to resolve this trouble when I execute a DCL command for testing.  When I selected the option '1' the program cancel and show this message '%RMS-W-RTB, 257 byte record too large for user's buffer'&lt;BR /&gt;&lt;BR /&gt;The option 'PASO1' have 130 characters to show on the screen.  If this results is OK must be showed but it is not. &lt;BR /&gt;&lt;BR /&gt;I consider 130 characters per show as a real script validations reach over the real range per characters (130)&lt;BR /&gt;&lt;BR /&gt;This is the result on my terminal:&lt;BR /&gt;------------------------------------------&lt;BR /&gt;$ set ver&lt;BR /&gt;$ set noon&lt;BR /&gt;$&lt;BR /&gt;$Enter Option === &amp;gt;  : 1&lt;BR /&gt;1&lt;BR /&gt;$   IF OPC .EQS. "" THEN goto EXIT&lt;BR /&gt;$   IF OPC .LE. 0  .OR. OPC .GT.15 THEN GOTO inicio&lt;BR /&gt;$   IF OPC .EQ. 1 THEN GOTO PASO1&lt;BR /&gt;$ PASO1:&lt;BR /&gt;%RMS-W-RTB, 257 byte record too large for user's buffer&lt;BR /&gt;&lt;BR /&gt;In this message i have the dcl script command attachments.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Eduardo</description>
    <pubDate>Tue, 12 May 2009 22:41:42 GMT</pubDate>
    <dc:creator>lalo57</dc:creator>
    <dc:date>2009-05-12T22:41:42Z</dc:date>
    <item>
      <title>%RMS-W-RTB when execute DCL script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174778#M42381</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;Please, I need to resolve this trouble when I execute a DCL command for testing.  When I selected the option '1' the program cancel and show this message '%RMS-W-RTB, 257 byte record too large for user's buffer'&lt;BR /&gt;&lt;BR /&gt;The option 'PASO1' have 130 characters to show on the screen.  If this results is OK must be showed but it is not. &lt;BR /&gt;&lt;BR /&gt;I consider 130 characters per show as a real script validations reach over the real range per characters (130)&lt;BR /&gt;&lt;BR /&gt;This is the result on my terminal:&lt;BR /&gt;------------------------------------------&lt;BR /&gt;$ set ver&lt;BR /&gt;$ set noon&lt;BR /&gt;$&lt;BR /&gt;$Enter Option === &amp;gt;  : 1&lt;BR /&gt;1&lt;BR /&gt;$   IF OPC .EQS. "" THEN goto EXIT&lt;BR /&gt;$   IF OPC .LE. 0  .OR. OPC .GT.15 THEN GOTO inicio&lt;BR /&gt;$   IF OPC .EQ. 1 THEN GOTO PASO1&lt;BR /&gt;$ PASO1:&lt;BR /&gt;%RMS-W-RTB, 257 byte record too large for user's buffer&lt;BR /&gt;&lt;BR /&gt;In this message i have the dcl script command attachments.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Eduardo</description>
      <pubDate>Tue, 12 May 2009 22:41:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174778#M42381</guid>
      <dc:creator>lalo57</dc:creator>
      <dc:date>2009-05-12T22:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: %RMS-W-RTB when execute DCL script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174779#M42382</link>
      <description>Some suggestions on the code, and some comments.&lt;BR /&gt;&lt;BR /&gt;Don't embed escape directly into DCL.  Use symbol substitution.  That approach avoids having the escape sequences interpreted when you're looking at the procedure.&lt;BR /&gt;&lt;BR /&gt;Please post some OpenVMS version information.  The newer OpenVMS versions have longer command line support; if you're far enough back, then you may well see these sorts of errors.&lt;BR /&gt;&lt;BR /&gt;I've updated the DCL code to fix the various DCL programming issues I encountered (undefined symbols, some odd command syntax), and it works as is (probably?) expected.&lt;BR /&gt;&lt;BR /&gt;A DIRECTORY /FULL on the file might help on the file involved here on your system, too.&lt;BR /&gt;&lt;BR /&gt;The attached DCL was tested on OpenVMS Alpha V8.3.&lt;BR /&gt;&lt;BR /&gt;Stephen Hoffman&lt;BR /&gt;HoffmanLabs LLC&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 May 2009 23:36:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174779#M42382</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-05-12T23:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: %RMS-W-RTB when execute DCL script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174780#M42383</link>
      <description>And FWIW, here's some (cleaner than what I hacked together in that reply) DCL example code that deals with embedding escape and control sequences:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/150" target="_blank"&gt;http://labs.hoffmanlabs.com/node/150&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want more examples of DCL command procedures, follow the DCL "tag" around the web site:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/taxonomy/term/53" target="_blank"&gt;http://labs.hoffmanlabs.com/taxonomy/term/53&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 May 2009 23:52:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174780#M42383</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-05-12T23:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: %RMS-W-RTB when execute DCL script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174781#M42384</link>
      <description>Hi all, this error only appeared on prior version to 7.3-2. on under, this message is not showed. Many documents, searched on HP and OpenVMS forums, talks about this feature on Dcl Commands.&lt;BR /&gt;&lt;BR /&gt;Thanks to all for your time.</description>
      <pubDate>Tue, 09 Jun 2009 23:39:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rms-w-rtb-when-execute-dcl-script/m-p/5174781#M42384</guid>
      <dc:creator>lalo57</dc:creator>
      <dc:date>2009-06-09T23:39:24Z</dc:date>
    </item>
  </channel>
</rss>

