Re: [U2] Ref: Is there anything built in to UV that contains when/who last

2013-04-10 Thread Tom Whitmore
Hi,
Be aware, the date last run is a static date.  You would need to rerun the 
MAKE.MAP.FILE to get it refreshed.

The only way I know to obtain the information you are looking for is to do the 
following:
LOGTO UV
SH
cd catdir
ls -l

For a specific program you would append a space then the program id.  You can 
use other ls options to sort the list, etc.

For WINDOWS you would use DIR.  I don't know the options off the top of my 
head.   Of course, you can use WINDOWS EXPLORER as well.

Tom Whitmore
RATEX Business Solutions

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Tuesday, April 09, 2013 4:56 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Ref: Is there anything built in to UV that contains when/who 
last

This is interesting in that it includes the number of times the program has 
been run since being catalogued
But although it contains the date it was last accessed doesn't actually 
contain the date it was catalogued!

So it can definitely answer a query like Is this still being used?
Which could be useful for cobweb removal.

But it cannot answer Who compiled this or Who last touched it

 

 

 

-Original Message-
From: Cooper, Rudy rudy.coo...@sagepub.com
To: 'u2-users@listserver.u2ug.org' u2-users@listserver.u2ug.org
Sent: Tue, Apr 9, 2013 1:49 pm
Subject: [U2] Ref: Is there anything built in to UV that contains when/who last


Do a help on the tcl command MAKE.MAP.FILE.  That may be able to help you.



Is there anything built in to UV that contains when/who last


Are you a fan of SAGE? Show us at www.facebook.com/SAGEPublications.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

 
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] One print job or many print jobs

2013-04-10 Thread Wjhonson
I'm running Universe on Windows 7

Under the following scenarios what would you expect to happen.

In a BASIC program, you EXECUTE a SETPTR using mode 3 and a hold file name say 
Clambake
You then, in the same BASIC program EXECUTE a LIST statement, and then EXECUTE 
another LIST statement

Will the results of the two separate LIST statements, be head-to-butt in the 
same named hold entry?
Will the second LIST statement overwrite the first output and thus be alone in 
the named hold entry?
Or will the second LIST statement perhaps just start spewing out on the default 
printer, not going to the hold file at all?

What if instead of EXECUTEing the SETPTR inside the BASIC program, you do it in 
the paragraph before you run the BASIC program?  Will the end result be 
different?  That is, will the two LIST statements now output differently then 
they did the first time?

Will Johnson

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] One print job or many print jobs

2013-04-10 Thread Dianne Ackerman
In my experience, the 2nd statement will overwrite the first statement 
unless you use that setptr keyword BANNER NEXT, which will then append a 
number onto the hold name so that each would have its own unique hold name.

-Dianne

On 4/10/2013 1:49 PM, Wjhonson wrote:

I'm running Universe on Windows 7

Under the following scenarios what would you expect to happen.

In a BASIC program, you EXECUTE a SETPTR using mode 3 and a hold file name say 
Clambake
You then, in the same BASIC program EXECUTE a LIST statement, and then EXECUTE 
another LIST statement

Will the results of the two separate LIST statements, be head-to-butt in the 
same named hold entry?
Will the second LIST statement overwrite the first output and thus be alone in 
the named hold entry?
Or will the second LIST statement perhaps just start spewing out on the default 
printer, not going to the hold file at all?

What if instead of EXECUTEing the SETPTR inside the BASIC program, you do it in 
the paragraph before you run the BASIC program?  Will the end result be 
different?  That is, will the two LIST statements now output differently then 
they did the first time?

Will Johnson

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users




___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] One print job or many print jobs

2013-04-10 Thread Anthonys Lists

On 10/04/2013 18:56, Dianne Ackerman wrote:
In my experience, the 2nd statement will overwrite the first statement 
unless you use that setptr keyword BANNER NEXT, which will then append 
a number onto the hold name so that each would have its own unique 
hold name.
-Dianne 


The alternative to BANNER NEXT is, iirc KEEP. This will keep the print 
file open until the next SETPTR, so you will get the two listings one 
after the other in the same file.


Another trick I used to make extensive use of, every time I used special 
SETPTR characteristics, I would use a dedicated print channel. iirc it's 
the first number of the SETPTR command, so I would do SETPTR 1, and 
then do a LIST ON 1 ... command.


The main, very useful, trick behind this was a basic program could scan 
a file printing 3 or 4 reports in one pass, suchh as a detailed report, 
a summary report and an error report, without having to cache all the 
data and save the printing to the end.


Cheers,
Wol
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users