Steve,

Like you I thought that this was documented somewhere - but I could not find it 
either.

However, from Doug Nadel's website the following REXX procedure declares the 
format :

decodestats:  Procedure  /* decode the directory */
direntry=Arg(1)
  Parse Var direntry,
    vv 2 mm 3 flags 4 ss 5 crecc 6 crdate 9 modcc 10 moddate 13 hh,
    14 tm 15 lines 17 init 19 mod 21 userid 28 .
  Parse Value c2x(crdate)  with cyy 3 cjjj 6 .
  Parse Value c2x(moddate) with myy 3 mjjj 6 .
  out=leftd(vv)'.'leftd(mm)                       /* Vv.Mm         */
  out=out 19+c2x(crecc)cyy'.'cjjj                 /* Create date   */
  out=out 19+c2x(modcc)myy'.'mjjj                 /* Mod date      */
  out=out leftx(hh)':'leftx(tm)':'leftx(ss)       /* mod time      */
  out=out right(c2d(lines),5)                     /* Lines         */
  out=out right(c2d(init),5)                      /* Initial lines */
  out=out right(c2d(mod),5)                       /* Mod lines     */
  out=out userid                                  /* User id       */
  If bitand(flags,'80'x) = '80'x Then
    out=out '(SCLM)'                              /* Saved by SCLM */
  Return out


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]


-----Original Message-----
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Thompson, Steve
Sent: 19 May 2008 21:45
To: [email protected]
Subject: ISPF STATS - Defined Where?

I have been scanning manuals (IBM online) and various books here in my office.

I know that IBM, somewhere, defines the Directory User area where ISPF writes 
statistics information.

Could someone point me to the layout of this area?

Regards,
Steve Thompson

-- All opinions expressed by me are my own and may not necessarily reflect 
those of my employer. --


----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
[EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at 
http://bama.ua.edu/archives/ibm-main.html

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to