<?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: Prefixing in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568177#M6231</link>
    <description>try this one&lt;BR /&gt;&lt;BR /&gt;say := write sys$output &lt;BR /&gt;&lt;BR /&gt;say "''f$cvtime(,"absolute","hour")':''f$cvtime(,"absolute","minute")' hallo"&lt;BR /&gt;&lt;BR /&gt;you get this&lt;BR /&gt;15:35 hallo&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;say "''f$cvtime(,"absolute","time")' hallo"&lt;BR /&gt;&lt;BR /&gt;you get this&lt;BR /&gt;&lt;BR /&gt;15:36:03.57 hallo&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Jun 2005 08:37:15 GMT</pubDate>
    <dc:creator>Jeroen Hartgers_3</dc:creator>
    <dc:date>2005-06-22T08:37:15Z</dc:date>
    <item>
      <title>Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568169#M6223</link>
      <description>I now have in DCL :&lt;BR /&gt;$ say = "write sys$output"&lt;BR /&gt;$ say "hello"&lt;BR /&gt;&lt;BR /&gt;I would like to have that before "hello" the time is written and this only by modifying the definition of say.&lt;BR /&gt;&lt;BR /&gt;E.g.&lt;BR /&gt;say:== write sys$output """''f$cvt()' """ +&lt;BR /&gt;&lt;BR /&gt;but here the time is put in the symbol at definition time and not at "execution of say time".&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 22 Jun 2005 02:45:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568169#M6223</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-06-22T02:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568170#M6224</link>
      <description>You could define a symbol SAY with a CALL SUB&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt; $ say = "Call SAY "&lt;BR /&gt; $ say " test"&lt;BR /&gt; $ exit&lt;BR /&gt; $ say: subroutine&lt;BR /&gt; $ ws F$time()+P1&lt;BR /&gt; $ exit&lt;BR /&gt; $ endsubroutine&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Wed, 22 Jun 2005 02:50:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568170#M6224</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2005-06-22T02:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568171#M6225</link>
      <description>Kalle,&lt;BR /&gt;&lt;BR /&gt;I thought of that but &lt;BR /&gt;1) this is slower&lt;BR /&gt;2) then I'm limited to 1 parameter, or even 9&lt;BR /&gt;3) constructs with + and - and lexicals could no longer be used without modification&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 22 Jun 2005 03:02:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568171#M6225</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-06-22T03:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568172#M6226</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;try this:&lt;BR /&gt;&lt;BR /&gt;a :== write sys$output f$time() + """ """ +&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Marc</description>
      <pubDate>Wed, 22 Jun 2005 03:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568172#M6226</guid>
      <dc:creator>Marc Van den Broeck</dc:creator>
      <dc:date>2005-06-22T03:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568173#M6227</link>
      <description>Caught by my simplified use of DCL.&lt;BR /&gt;Thanks Marc.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 22 Jun 2005 03:25:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568173#M6227</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-06-22T03:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568174#M6228</link>
      <description>$ call a "whatever"&lt;BR /&gt;$ exit&lt;BR /&gt;$a: subroutine&lt;BR /&gt;$ write sys$output "''f$trnlnm("sys$node")'::''f$time ()' ''p1'"&lt;BR /&gt;$ return&lt;BR /&gt;&lt;BR /&gt;Any text you can build up as a string. No "+" nor "-" ;)</description>
      <pubDate>Wed, 22 Jun 2005 03:55:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568174#M6228</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2005-06-22T03:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568175#M6229</link>
      <description>&lt;BR /&gt;$ HELP SET PREFIX&lt;BR /&gt;&lt;BR /&gt; $ SET PREFIX "(!5%T) "&lt;BR /&gt;?</description>
      <pubDate>Wed, 22 Jun 2005 05:47:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568175#M6229</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-06-22T05:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568176#M6230</link>
      <description>Pls. note that SET PREFIX needs verification turned ON.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Wed, 22 Jun 2005 05:56:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568176#M6230</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2005-06-22T05:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568177#M6231</link>
      <description>try this one&lt;BR /&gt;&lt;BR /&gt;say := write sys$output &lt;BR /&gt;&lt;BR /&gt;say "''f$cvtime(,"absolute","hour")':''f$cvtime(,"absolute","minute")' hallo"&lt;BR /&gt;&lt;BR /&gt;you get this&lt;BR /&gt;15:35 hallo&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;say "''f$cvtime(,"absolute","time")' hallo"&lt;BR /&gt;&lt;BR /&gt;you get this&lt;BR /&gt;&lt;BR /&gt;15:36:03.57 hallo&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jun 2005 08:37:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568177#M6231</guid>
      <dc:creator>Jeroen Hartgers_3</dc:creator>
      <dc:date>2005-06-22T08:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568178#M6232</link>
      <description>this will work to&lt;BR /&gt;&lt;BR /&gt;say = "write sys$output f$cvtime(,,"""time""")"</description>
      <pubDate>Wed, 22 Jun 2005 08:42:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568178#M6232</guid>
      <dc:creator>Jeroen Hartgers_3</dc:creator>
      <dc:date>2005-06-22T08:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Prefixing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568179#M6233</link>
      <description>I simply use&lt;BR /&gt;say="write sys$output f$cvtime(),"" "","&lt;BR /&gt;You can truncate datetime like this&lt;BR /&gt;say="write sys$output -&lt;BR /&gt;f$extr(11,8,f$cvtime()),"" "","&lt;BR /&gt; &lt;BR /&gt;e.g.&lt;BR /&gt;$ subject="It"&lt;BR /&gt;$ say subjetc," works!"&lt;BR /&gt;18:56:09 It works!&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jun 2005 11:51:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/prefixing/m-p/3568179#M6233</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-22T11:51:29Z</dc:date>
    </item>
  </channel>
</rss>

