Date and Time in ISPF.
Moderator: mickeydusaor
-
- New Member
- Posts: 6
- Joined: Thu Apr 17, 2014 2:07 pm
Date and Time in ISPF.
Hi ,
Is there any TSO command for displaying the current date,time of a day, on command line?
Is there any TSO command for displaying the current date,time of a day, on command line?
-
- Global Moderator
- Posts: 588
- Joined: Wed Nov 20, 2013 11:53 am
- Location: Mars
-
- New Member
- Posts: 6
- Joined: Thu Apr 17, 2014 2:07 pm
-
- Global Moderator
- Posts: 588
- Joined: Wed Nov 20, 2013 11:53 am
- Location: Mars
Re: Date and Time in ISPF.
Sorry , I would like to have my personal details as a "secret"
You could Address me as Pandora
You could Address me as Pandora
zprogrammer
-
- New Member
- Posts: 6
- Joined: Thu Apr 17, 2014 2:07 pm
-
- Global Moderator
- Posts: 588
- Joined: Wed Nov 20, 2013 11:53 am
- Location: Mars
-
- New Member
- Posts: 7
- Joined: Mon Jan 26, 2015 7:49 pm
Re: Date and Time in ISPF.
Hi,
as i know there is no Command, but easily to realize with REXX.
Name it TSOTIME and then you can execute it by TSO, if the REXX is loacted on a concatinatet Clist Library (SYSPROC or SYSEXEC DD)
best regards
Christoph Thiele
as i know there is no Command, but easily to realize with REXX.
Code: Select all
/*REXX */
SAY DATE('E') TIME()
RETURN
best regards
Christoph Thiele
Last edited by Anuj Dhawan on Tue Jan 27, 2015 8:56 pm, edited 1 time in total.
Reason: Added BBCode Tags.
Reason: Added BBCode Tags.
- Robert Sample
- Global Moderator
- Posts: 1903
- Joined: Fri Jun 28, 2013 1:22 am
- Location: Dubuque Iowa
Re: Date and Time in ISPF.
thiele3105:
You need to find out where the manuals are at your site and learn how to read them. From the TSO/E Commands manual in the TSO bookshelf:as i know there is no Command,
Since there is a TIME command under TSO, typing TSO TIME on the command line of ISPF will return the requested information. Your REXX code is completely redundant and unnecessary.1.95 TIME command Use the TIME command to obtain the following information:
Cumulative CPU time (from LOGON)
Cumulative session time (from LOGON)
Total service units used, which includes:
CPU service units - A measure of task execution time.
I/O service units - A measure of SMF data set activity.
Storage service units - A measure of the page frame usage.
Local time of day Refers to the time of execution for this command. It is displayed as follows:
local time of day in hours(HH),
minutes(MM), and seconds(SS),
(am or pm is also displayed)
Today's date.
Create an account or sign in to join the discussion
You need to be a member in order to post a reply
Create an account
Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute