<?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: Lexical function in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266500#M15328</link>
    <description>now know )</description>
    <pubDate>Wed, 17 Sep 2008 06:32:13 GMT</pubDate>
    <dc:creator>Just_Sergey</dc:creator>
    <dc:date>2008-09-17T06:32:13Z</dc:date>
    <item>
      <title>Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266486#M15314</link>
      <description>Help me plz.&lt;BR /&gt;How can i get Entry number of executing job by f$getqui function??&lt;BR /&gt;I know just job name.</description>
      <pubDate>Wed, 10 Sep 2008 11:34:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266486#M15314</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-10T11:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266487#M15315</link>
      <description>More details would get you a more specific answer.&lt;BR /&gt;&lt;BR /&gt;If you want to get the entry number of your currently executing job (from that job itself) then something like...&lt;BR /&gt;&lt;BR /&gt;entry = f$getqui("display_job","entry_number",,"this_job")&lt;BR /&gt;&lt;BR /&gt;If the job you're interested in is another job (not the process you're running in) then you would need to loop through the queues (or the specific queue if you know the queue name) then loop through the jobs in that queue and check for the specific job name you want.  Once you find that job then you can get the entry number.&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Sep 2008 11:42:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266487#M15315</guid>
      <dc:creator>EdgarZamora_1</dc:creator>
      <dc:date>2008-09-10T11:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266488#M15316</link>
      <description>And note that the job name is not a unique key for getting a job (you can have 2 jobs calling "COMPILE").&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 10 Sep 2008 11:57:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266488#M15316</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2008-09-10T11:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266489#M15317</link>
      <description>2EdgarZamora: i have second case.&lt;BR /&gt;I'm interested in is another job.&lt;BR /&gt;And I know queue name, but I dont know how realize it. ((&lt;BR /&gt;Can you write some example?&lt;BR /&gt;2Wim Van den: I have just one job with this job_name</description>
      <pubDate>Wed, 10 Sep 2008 12:08:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266489#M15317</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-10T12:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266490#M15318</link>
      <description>Just_Sergey,&lt;BR /&gt;&lt;BR /&gt;As was implied by the other posts, one must be careful as it is possible to have multiple jobs of the same name in the queues and/or executing at the same time (for either the same user or different users).&lt;BR /&gt;&lt;BR /&gt;Only the entry number is unique, so long as the  job exists. Entry numbers can be quickly recycled, so care is recommended.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Wed, 10 Sep 2008 12:09:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266490#M15318</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2008-09-10T12:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266491#M15319</link>
      <description>Here you have an example of a .com that creates (if not there) and deletes (if there) job entries.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 10 Sep 2008 12:16:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266491#M15319</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2008-09-10T12:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266492#M15320</link>
      <description>I thought it would work. (in Attachment)&lt;BR /&gt;Naively )</description>
      <pubDate>Wed, 10 Sep 2008 12:28:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266492#M15320</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-10T12:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266493#M15321</link>
      <description>Replace display_job by display_entry and it will.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 10 Sep 2008 12:44:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266493#M15321</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2008-09-10T12:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266494#M15322</link>
      <description>It does not ((( Attach</description>
      <pubDate>Wed, 10 Sep 2008 12:55:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266494#M15322</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-10T12:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266495#M15323</link>
      <description>The attached sample code will do what you want.  Tailor it for flexibility.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Sep 2008 13:08:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266495#M15323</guid>
      <dc:creator>EdgarZamora_1</dc:creator>
      <dc:date>2008-09-10T13:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266496#M15324</link>
      <description>Are you system ? I just did the same test and it works for my job.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 10 Sep 2008 13:08:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266496#M15324</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2008-09-10T13:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266497#M15325</link>
      <description>Re my response... you might want to add a "BATCH" flag to the GETQUI for less overhead...&lt;BR /&gt;&lt;BR /&gt;$   QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*","BATCH")</description>
      <pubDate>Wed, 10 Sep 2008 13:21:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266497#M15325</guid>
      <dc:creator>EdgarZamora_1</dc:creator>
      <dc:date>2008-09-10T13:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266498#M15326</link>
      <description>Thanks to all especially Wim Van den and his example. Found solution to a problem.</description>
      <pubDate>Thu, 11 Sep 2008 12:10:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266498#M15326</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-11T12:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266499#M15327</link>
      <description>Hi, Just_sergy&lt;BR /&gt;&lt;BR /&gt;from your Forum Profile:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;I have assigned points to 0 of 8 responses to my questions.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe you can find some time to do some assigning?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.&lt;BR /&gt;Consider, that every poster took at least the trouble of posting for you!&lt;BR /&gt;&lt;BR /&gt;To easily find your streams with unassigned points, click your own name somewhere.&lt;BR /&gt;This will bring up your profile.&lt;BR /&gt;Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.&lt;BR /&gt;&lt;BR /&gt;Thanks on behalf of your Forum colleagues.&lt;BR /&gt;&lt;BR /&gt;PS. nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Sep 2008 19:17:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266499#M15327</guid>
      <dc:creator>Duncan Morris</dc:creator>
      <dc:date>2008-09-12T19:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lexical function</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266500#M15328</link>
      <description>now know )</description>
      <pubDate>Wed, 17 Sep 2008 06:32:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/lexical-function/m-p/4266500#M15328</guid>
      <dc:creator>Just_Sergey</dc:creator>
      <dc:date>2008-09-17T06:32:13Z</dc:date>
    </item>
  </channel>
</rss>

