<?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: How Are Process Names Generated? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919304#M21519</link>
    <description>{see description of solution above}</description>
    <pubDate>Mon, 22 Aug 2005 08:04:46 GMT</pubDate>
    <dc:creator>Kevin Atchley</dc:creator>
    <dc:date>2005-08-22T08:04:46Z</dc:date>
    <item>
      <title>How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919285#M21500</link>
      <description>Greeting's All&lt;BR /&gt;(1st time poster ... please bear with the newbie)&lt;BR /&gt;&lt;BR /&gt;We are running a system on VMS v7.3-1, and have noticed something peculiar.  When doing a SHO USER /FULL, it shows a list of all user's logged into the system, along with the process name associated with each user.  In all most all cases the process name matches the user name.  However, in some cases the process name shows up as "_LTAxxxx:".  This is causing a problem as we have some local code that grabs the process name and writes it to a log file, when it logs the "_LTAxxxx" we have no way of knowing what person we were logging information about at that time.  And no .. i don't know why our local code was written this way, but it apparently cannot be changed easily so I was asked to find out why the process names were showing as they are.&lt;BR /&gt;&lt;BR /&gt;After doing some digging in manuals it seemed to me that there should never be duplicate process names within a given group.  However, this does not seem to match what I am seeing on our system.  If I do a SHO PROC /ALL /ID=xxxxxxxx I get the following information about several of the processes on his system:&lt;BR /&gt;&lt;BR /&gt;MAGA:CSKTA&amp;gt; pipe sho proc/all/id=0011E30D | sea sys$input "User I", "ess name"&lt;BR /&gt;                          Node: MAGA         Process name: "RANGE"&lt;BR /&gt;User Identifier:    [CONTR,RANEFF]&lt;BR /&gt;MAGA:CSKTA&amp;gt; pipe sho proc/all/id=00114117 | sea sys$input "User I", "ess name"&lt;BR /&gt;                          Node: MAGA             Process name: "RANGE"&lt;BR /&gt;User Identifier:    [CONTR,RANEFF]&lt;BR /&gt;MAGA:CSKTA&amp;gt; pipe sho proc/all/id=000E9160 | sea sys$input "User I", "ess name"&lt;BR /&gt;                          Node: MAGA             Process name: "RANGE"&lt;BR /&gt;User Identifier:    [CONTR,RANEFF]&lt;BR /&gt;MAGA:CSKTA&amp;gt; pipe sho proc/all/id=000E2A37 | sea sys$input "User I", "ess name"&lt;BR /&gt;                          Node: MAGA             Process name: "_LTA1278:"&lt;BR /&gt;User Identifier:    [CONTR,RANEFF]&lt;BR /&gt;&lt;BR /&gt;As you can see the User Identifiers for all processes match (which I assume points to what group they belong, however the process names for some are the same and for some are different.&lt;BR /&gt;&lt;BR /&gt;So my question is .... How does the system determine what the processes name is for a user when they log in, why are some of the process names identical and why are some of them "_LTAxxxx:" processes, and if I am looking at the wrong information what information should I be looking at?&lt;BR /&gt;&lt;BR /&gt;TIA for all you help,&lt;BR /&gt;-k</description>
      <pubDate>Thu, 18 Aug 2005 13:06:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919285#M21500</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-18T13:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919286#M21501</link>
      <description>Welcome to ITRC forums!&lt;BR /&gt;&lt;BR /&gt;It depends on the application which name a process is assigned. As you have found out, process names must be unique in a UIC group. For this reason, a new interactive process receives the terminal's name (e.g. _LTA123:). At this stage, the authorization is not done and the username is unknown.&lt;BR /&gt;&lt;BR /&gt;During login of the user (I think it is in LOGINOUT.EXE) an attempt is made to change the process name to the same value as the username. If this one fails due to a duplicate process name, the old name (_LTA123:) is retained.</description>
      <pubDate>Thu, 18 Aug 2005 13:16:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919286#M21501</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-08-18T13:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919287#M21502</link>
      <description>Oh, by the way:&lt;BR /&gt;&amp;gt; User Identifier: [CONTR,RANEFF]&lt;BR /&gt;&lt;BR /&gt;This has nothing to do with the process name. It is a binary/ textual translation from the process' UIC. CONTR is an identifier for the UIC group and RANEFF for the member in that group.&lt;BR /&gt;&lt;BR /&gt;Go into AUTHORIZE and check:&lt;BR /&gt;UAF&amp;gt; show /identifier CONTR&lt;BR /&gt;UAF&amp;gt; show /identifier RANEFF&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;&lt;BR /&gt;For fun(?), you can play a bit:&lt;BR /&gt;UAF&amp;gt; rename /identifier CONTR ABC&lt;BR /&gt;UAF&amp;gt; rename /identifier RANEFF DEF&lt;BR /&gt;UAF&amp;gt; show RANEFF&lt;BR /&gt;&lt;BR /&gt;$ pipe ...&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Aug 2005 13:30:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919287#M21502</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-08-18T13:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919288#M21503</link>
      <description>Most of the sites I have worked at have implemented something at login in SYLOGIN.COM that will set the username to USER_1, USER_2, USER_n depending on how many times the USER is logged on.  It is actually pretty simple to do.&lt;BR /&gt;&lt;BR /&gt;$ usr_name=f$getjpi("","USERNAME")&lt;BR /&gt;$ if f$len(usr_name).gt. 13&lt;BR /&gt;$  then&lt;BR /&gt;$   usr_name=f$extract(0,13,usr_name)&lt;BR /&gt;$ endif&lt;BR /&gt;$ count=0&lt;BR /&gt;$ set message/nof/noi/nos/not&lt;BR /&gt;$LOOP:&lt;BR /&gt;$ count = count + 1&lt;BR /&gt;$ if count .gt. 9&lt;BR /&gt;$  then&lt;BR /&gt;$   goto max_logins_exceeded&lt;BR /&gt;$ endif&lt;BR /&gt;$ set process/name="''usr_name'_''count'"&lt;BR /&gt;$ if .not $status then goto loop&lt;BR /&gt;$ goto exit_com&lt;BR /&gt;$!&lt;BR /&gt;$MAX_LOGINS_EXCEEDED:&lt;BR /&gt;$ write sys$output ""&lt;BR /&gt;$ write sys$output "maximum logins exceeded for account"&lt;BR /&gt;$ write sys$output &lt;BR /&gt;$ logout&lt;BR /&gt;$!&lt;BR /&gt;$EXIT_COM:&lt;BR /&gt;$ exit&lt;BR /&gt;&lt;BR /&gt;To increase the number of maximum logins to a two-digit number you would have to limit the main use-name to 12 characters instead of 13 and change the check of count after it is incremented.&lt;BR /&gt;&lt;BR /&gt;Phil</description>
      <pubDate>Thu, 18 Aug 2005 13:43:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919288#M21503</guid>
      <dc:creator>Phillip Thayer</dc:creator>
      <dc:date>2005-08-18T13:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919289#M21504</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;Welcome to the OpenVMS Forum.&lt;BR /&gt;&lt;BR /&gt;For starters, it would be helpful to see the complete SHOW SYSTEM output.&lt;BR /&gt;&lt;BR /&gt;Process names are initially based on usernames, but can be reset using the SET PROCESS/NAME=xxx command. When a user is already signed on, the name will default to the name of the device that session logged in from.&lt;BR /&gt;&lt;BR /&gt;Your better bet on associating users with actions is to use the accounting file, and the processid. Process ID is unique within a cluster lifetime.&lt;BR /&gt;&lt;BR /&gt;I hope that the above is helpful&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>Thu, 18 Aug 2005 13:59:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919289#M21504</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-08-18T13:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919290#M21505</link>
      <description>A PID is unique within a cluster at a given time, but the 'reuse' counter (don't know the correct term, sorry) in the PID is only a few bits if you have a large MAXPROCESSCNT. So PIDs _can_ come up again if a node runs long enough and sees lots of process creations.</description>
      <pubDate>Thu, 18 Aug 2005 15:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919290#M21505</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-08-18T15:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919291#M21506</link>
      <description>Kevin, you would probably want to exclude username SYSTEM and possibly others from your process naming scheme. You may also want to identify non-interactive jobs differently (such as batch jobs). We often do a: "$set proc/name= process_name" for our batch jobs to indicate what there function is. So you may want to use the lexical f$mode():&lt;BR /&gt;$ if f$mode() ...   ! HELP Lexicals f$mode&lt;BR /&gt;$ then&lt;BR /&gt;...&lt;BR /&gt;$ endif&lt;BR /&gt;Lawrence&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Aug 2005 15:51:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919291#M21506</guid>
      <dc:creator>Lawrence Czlapinski</dc:creator>
      <dc:date>2005-08-18T15:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919292#M21507</link>
      <description>Thank you all for your response, however I still don't quite have the information I was looking for.  Allow me to elaborate.&lt;BR /&gt;&lt;BR /&gt;Doing a SHOW USER/FULL, we have the following users logged in:&lt;BR /&gt;&lt;BR /&gt; Username Process Name    PID     Terminal&lt;BR /&gt; RANGE    RANGE         000D4808  LTA1187: (MAGT06/TS63)&lt;BR /&gt; RANGE    RANGE         000F900C  LTA1338: (MAGT0T/TST7)&lt;BR /&gt; RANGE    RANGE         000B8E2B  LTA1389: (MAGT0M/TSM6)&lt;BR /&gt; RANGE    RANGE         000F2A36  NTY8542: (ccc-ornent)&lt;BR /&gt; RANGE    RANGE         00088095  LTA1717: (MAGT0M/TSM2)&lt;BR /&gt; RANGE    RANGE         000CF896  LTA1946: (MAGT0X/TSX3)&lt;BR /&gt; RANGE    RANGE         0008A2A2  LTA1781: (MAGT0O/TSO2)&lt;BR /&gt; RANGE    RANGE         000D06A6  LTA1240: (MAGT09/TS97)&lt;BR /&gt; RANGE    RANGE         000B36B9  LTA1328: (MAGT08/TS81)&lt;BR /&gt; RANGE    RANGE         000C46BB  NTY8995: (23aal66.milliken.com)&lt;BR /&gt; RANGE    RANGE         000EB4C4  LTA1247: (MAGTBB/TSBB5)&lt;BR /&gt; RANGE    RANGE         00086CD8  LTA1752: (MAGT09/TS95)&lt;BR /&gt; RANGE    RANGE         00102EF2  LTA1299: (MAGT0R/TSR4)&lt;BR /&gt; RANGE    RANGE         001168F4  LTA1823: (MAGTFF/TSFF5)&lt;BR /&gt; RANGE    RANGE         00107305  LTA1393: (MAGT06/TS66)&lt;BR /&gt; RANGE    RANGE         0011E30D  LTA1841: (MAGT06/TS64)&lt;BR /&gt; RANGE    RANGE         00114117  LTA1372: (MAGT0O/TSO6)&lt;BR /&gt; RANGE    RANGE         000CBF2A  LTA1607: (MAGT0O/TSO1)&lt;BR /&gt; RANGE    RANGE         0010E530  LTA1949: (MAGT09/TS93)&lt;BR /&gt; RANGE    RANGE         000E9160  LTA1409: (MAGT0T/TST8)&lt;BR /&gt; RANGE    _LTA1237:     000AD0FC  LTA1237: (MAGT0O/TSO8)&lt;BR /&gt; RANGE    _LTA1278:     000E2A37  LTA1278: (MAGT0I/TSI1)&lt;BR /&gt; RANGE    _LTA1580:     0011FF33  LTA1580: (MAGT04/TS48)&lt;BR /&gt;&lt;BR /&gt;The question we have is why do some of the users have Username RANGE and Process Name RANGE, while others have Process Name LTAxxxx:?  They should all be in the same group as they are all doing the same thing and logging in under the same account.  We are more interested in finding out why there are some showing up as LTAxxxx: because we want those to show Process Name the same as User Name.  Again, I don't know why our code was written to use Process Name when logging entries, but i have been told it's not something they want to try and change (if they can get around it).&lt;BR /&gt;&lt;BR /&gt;Again, TIA for your help,&lt;BR /&gt;-k</description>
      <pubDate>Thu, 18 Aug 2005 16:15:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919292#M21507</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-18T16:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919293#M21508</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;Please submit the output of SHOW SYSTEM and SHOW USERS/FULL without any filtering. Then we will be able to fairly identify exactly what is happening.&lt;BR /&gt;&lt;BR /&gt;Posting filtered outputs does not help.&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>Thu, 18 Aug 2005 19:34:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919293#M21508</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-08-18T19:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919294#M21509</link>
      <description>-k&lt;BR /&gt;&lt;BR /&gt;  The default algorithm for generating a process name is fairly simple minded. First attempt is to set the process name to the user name. If that's not unique within the group, then use the terminal name "_LTA1234:"&lt;BR /&gt;&lt;BR /&gt;  If you have multiple processes on your system within the same group that have the same (apparent) process name, then there must be some tricky code which is forcing that to happen, because OpenVMS isn't supposed to allow it.&lt;BR /&gt;&lt;BR /&gt;  It's possible that someone has written code executed at login which sets the process name to "RANGE" with space characters appended. Since the process name limit is 15 characters, that would give you 10 extra processes with names that LOOK the same from SHOW USERS. There may be other non-printing characters you could use as well, giving a few more. Once you've run out of combinations, maybe it just gives up and leaves the process name as the terminal name?&lt;BR /&gt;&lt;BR /&gt;  The uniqueness restriction isn't very hard - one fairly simple way to create two processes with the same name:&lt;BR /&gt;&lt;BR /&gt;1) Login as yourself - this creates a process with name=username&lt;BR /&gt;2) Login again, this will give you something like _LTA1234: or _TNA4567:&lt;BR /&gt;3) Work out what the next LTA or TNA number will be and use SET PROCESS/NAME to rename your second process to that name&lt;BR /&gt;4) Login again. If you predicted correctly, you will now have 2 processes with the same name.&lt;BR /&gt;&lt;BR /&gt;The process naming logic assumes that no existing process will use the name of the current process.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Bottom line here is whatever is happening on your system is site specific, as there isn't any logic in OpenVMS which would give you a SHOW USERS display like the one you've posted.</description>
      <pubDate>Fri, 19 Aug 2005 00:17:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919294#M21509</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-08-19T00:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919295#M21510</link>
      <description>-k,&lt;BR /&gt;my welcome to vms forum.&lt;BR /&gt; &lt;BR /&gt;I think, like other guys, you have a login code to set process name to RANGE*.&lt;BR /&gt;Look at SYS$MANAGER:SYLOGIN.COM, you should see the reason of it.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Aug 2005 02:07:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919295#M21510</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-19T02:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919296#M21511</link>
      <description>Thank You All,&lt;BR /&gt;&lt;BR /&gt;I think I am getting closer to understanding why it is happening, but now the questions is HOW is it happening.  I have read that there can not be two processes with the same process name in the same group.  So my question is, why/how can we have 20 processes with process name RANGE whan they are all logging in under the same usreid?  I would assume they would have to be in different groups, and I'm sure we do have some local code in place that is changing process names and possible even group assignments, but how do I verify this?  i.e. What information in SHO PROC /ALL/ID=xxxxxxxx points out that these two (or twenty) processes are in different groups?&lt;BR /&gt;&lt;BR /&gt;Thanks to all,&lt;BR /&gt;(point will be assigned shortly)&lt;BR /&gt;&lt;BR /&gt;-k</description>
      <pubDate>Fri, 19 Aug 2005 08:54:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919296#M21511</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-19T08:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919297#M21512</link>
      <description>Check the full process name surrounded by quotes with :&lt;BR /&gt;$ sh proc/id=xxx&lt;BR /&gt;Then you will see the blanks behind RANGE.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Fri, 19 Aug 2005 09:20:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919297#M21512</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-08-19T09:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919298#M21513</link>
      <description>Hi -k,&lt;BR /&gt;I have a crazy idea ...&lt;BR /&gt;- I guess you have some automatic procedure to assign process name;&lt;BR /&gt;- I guess this procedure has some bug&lt;BR /&gt;So look at follow code:&lt;BR /&gt;$! Set radix (may user name)&lt;BR /&gt;$ PROCNAME="RANGE"&lt;BR /&gt;$! Set counter (in wrong mode)&lt;BR /&gt;$ ID[0,16]=1&lt;BR /&gt;$! Set full process name&lt;BR /&gt;$ MYNAME=PROCNAME+ID&lt;BR /&gt;$! Now I set my process name&lt;BR /&gt;$ SET PROC/NAME="''MYNAME'"&lt;BR /&gt;I know it uneasy to read so after equal characters are &lt;DOUBLE quote=""&gt; &lt;QUOTE&gt; &lt;QUOTE&gt; MYNAME &lt;QUOTE&gt; &lt;DOUBLE quote=""&gt;&lt;BR /&gt;This is not tha same but it's just to show how use undisplayable characters.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;&lt;/DOUBLE&gt;&lt;/QUOTE&gt;&lt;/QUOTE&gt;&lt;/QUOTE&gt;&lt;/DOUBLE&gt;</description>
      <pubDate>Fri, 19 Aug 2005 09:26:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919298#M21513</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-19T09:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919299#M21514</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;In an effort to help you narrow your search, have a look at the login command procedure, if any, for the username Range:&lt;BR /&gt;&lt;BR /&gt;$ Pipe MCR Authorize Show /Full Range | Search Sys$InPut "LGICMD"&lt;BR /&gt;&lt;BR /&gt;Then Search this file for possible process name code as others above have suggested.&lt;BR /&gt;&lt;BR /&gt;Enjoy,&lt;BR /&gt;&lt;BR /&gt;--Jeff</description>
      <pubDate>Fri, 19 Aug 2005 10:34:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919299#M21514</guid>
      <dc:creator>Jeffery D. Urmann</dc:creator>
      <dc:date>2005-08-19T10:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919300#M21515</link>
      <description>Again, Thank You All,&lt;BR /&gt;&lt;BR /&gt;Antonio, I have had some luck in creating duplicate process names for the same user name following some of the suggestions you left.  I'm not sure if this is what we are doing, but I will start looking at our code to find out if this is the culprit.&lt;BR /&gt;&lt;BR /&gt;Also, in response to several other suggestions i can say that the usernames are not being padded with spaces to give the "appearance" of similar process names.  Doing a f$length( f$getjpi("pid","PRCNAM)) on the processes shows the process name for all of them is the same length.  Also, there is nothing special in the system or user login procedures that is making these changes, but there is other local code to be looked at.  &lt;BR /&gt;&lt;BR /&gt;Again, I have heard that duplicate process names are not allowed in a specific group (which I know can be circumvented with a few tricks).  I am still wanting to find out what this "group" is?  Is this the UIC for the account that was logged in while the process name was being assigned?  Is there some way to see what "group" the process is in, such as a SHO PROC /ALL?  How can I verify that all of the processes are in different groups (or the same group)?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-k&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Aug 2005 11:53:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919300#M21515</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-19T11:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919301#M21516</link>
      <description>Kevin&lt;BR /&gt;&lt;BR /&gt;$ SHOW SYS/FULL shows the UIC of the process as the first item in the 2nd line of each process display.&lt;BR /&gt;&lt;BR /&gt;F$GETJPI("pid-of-process","GRP") shows the group-UIC as a decimal number.&lt;BR /&gt;&lt;BR /&gt;SHOW PROC/ID=pid-of-process shows the User Identifier as: [group-name,username]&lt;BR /&gt;&lt;BR /&gt;If there is no group-UIC (= [group,177777]) name defined for a group, only the username will be shown as the user identifier.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Fri, 19 Aug 2005 12:38:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919301#M21516</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-08-19T12:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919302#M21517</link>
      <description>-k,&lt;BR /&gt;now use brute force to search what you want.&lt;BR /&gt;$ SEARCH SYS$MANAGER:SYLOGIN.COM -&lt;BR /&gt;"SET","PRO","NAME" /MAT=AND&lt;BR /&gt;If necessary you can extend this search to all .com files of system&lt;BR /&gt;$ SEARCH SYS$DEVICE:[000000...]*.COM -&lt;BR /&gt;"SET","PRO","NAME" /MAT=AND/OUT=&lt;MYLOG&gt;&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;&lt;/MYLOG&gt;</description>
      <pubDate>Sat, 20 Aug 2005 04:21:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919302#M21517</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-20T04:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919303#M21518</link>
      <description>Thank you all for your generous help.&lt;BR /&gt;&lt;BR /&gt;We have finally determined what was happening, and why we were seeing the odd behavior.  As it turns out, when the users log into the server, they go into a custom written menu.  The menu, among many other things, changes the UIC of the user's process as it traverses the menu.  The issues we were seeing were nothing more than a timing issue.  When the 1st user logged in, they started in group [00100] and had process name = user name; they went into menu and changed UIC to [00250].  The next user logged in and started in group [00100] with process name = user name; they went into menu and their UIC changed to [00250].  Now, when user #3 logged in with UIC [00100] and process name = user name, they DID NOT go into menu.  So when user #4 logged in with UIC [00100], their process name did not change to match user name, it stayed the _LTAxxxx that VMS assigned it.  And so on, and so on, and so on....&lt;BR /&gt;&lt;BR /&gt;Thank you all for your help and the information you presented.&lt;BR /&gt;&lt;BR /&gt;Have a good day,&lt;BR /&gt;-k&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Aug 2005 08:03:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919303#M21518</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-22T08:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: How Are Process Names Generated?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919304#M21519</link>
      <description>{see description of solution above}</description>
      <pubDate>Mon, 22 Aug 2005 08:04:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-are-process-names-generated/m-p/4919304#M21519</guid>
      <dc:creator>Kevin Atchley</dc:creator>
      <dc:date>2005-08-22T08:04:46Z</dc:date>
    </item>
  </channel>
</rss>

