Re: Tracking CLIST/Exec Usage

2022-01-28 Thread Steve Horein
I appreciate what a privilege it is to work with NetView Rexx.

Rexx function ENVDATA('G'):
https://www.ibm.com/docs/en/z-netview/6.3.0?topic=files-session-information-functions

> Returns a list of blank delimited entries representing the REXX, PL/I, and
> C procedures in the calling sequence or procedure group that was active
> when ENVDATA was called.

Each entry consists of two names separated by a slash (/), in the format
> *command/name*. *command* is the command verb or synonym used to call the
> procedure. *name* is one of the following names:
>
>- The module name if the procedure is PL/I or C.
>
>
>- The member name in DSICLD if the procedure is REXX.
>
> Multiple entries show the calling sequence in reverse order. The command
> the operator entered is the last entry listed.


PIPE stage ENVDATA:
https://www.ibm.com/docs/en/z-netview/6.3.0?topic=syntax-pipe-envdata

> The data following the keyword GENEALOGY consists of blank delimited
> entries representing the REXX, PL/I, and C procedures in the calling
> sequence or procedure group which was active when ENVDATA was invoked.
> Each entry consists of two names separated by a slash (/). The command is
> the command verb or synonym used to invoke the procedure. The name is one
> of the following items:
>
>- The module name if the procedure is PL/I or C
>
>
>- The member name in DSICLD if the procedure is REXX.
>
> Multiple entries following the GENEALOGY keyword show the calling sequence
> in reverse order. The command the operator entered is the last entry listed.


I imagine your inquiry relates to the TSO environment.

On Thu, Jan 27, 2022 at 10:31 AM David Spiegel 
wrote:

> Hi List,
> Is it possible for an Exec/CLIST to determine from which Exec/CLIST it
> was invoked?
> If yes, please specify how.
>
> Thank you in advance.
>
> Regards,
> David
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread Lionel B. Dyck
Correct - I am so  used to do parse value with that for source my fingers just 
typed with. 


Lionel B. Dyck <><
Website: https://www.lbdsoftware.com
Github: https://github.com/lbdyck

“Worry more about your character than your reputation. Character is what you 
are, reputation merely what others think you are.”   - - - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Paul Gilmartin
Sent: Thursday, January 27, 2022 12:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Tracking CLIST/Exec Usage

On Thu, 27 Jan 2022 11:43:34 -0600, Lionel B. Dyck wrote:

>I wrote a quick test - hope it helps:
>
>Test One:
>
>T1:
>/* rexx */
>parse source with src 
>say 'src:' src
>'%t2' 
> 
The "with" is probably misplaced.  It assigns the system name ("TSO") to the 
variable "with".
<https://www.ibm.com/docs/en/zos/2.5.0?topic=instructions-parse>


>T2:
>/* rexx */  
>parse source with src   
>say 't2 src:' src   
>'%t3'   
>
>T3:
>/* rexx */   
>parse source with src
>say 't3 src:' src
>
>The results when executing T1:
>
>src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?  
>t2 src: COMMAND T2 SYSEXEC ? ? TSO ISPF ?   
>t3 src: COMMAND T3 SYSEXEC ? ? TSO ISPF ?   
>
>
>Test 2:
>
>T1:
>/* rexx */   
>parse source with src
>say 'src:' src   
>x = t2() 
>
>T2:
>/* rexx */  
>parse source with src   
>say 't2 src:' src   
>x = t3()
>return 0
>
>T3:
>/* rexx */   
>parse source with src
>say 't3 src:' src
>return 0 
>
>Results:
>
>src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?   
>t2 src: FUNCTION T2 SYSEXEC ? ? TSO ISPF ?   
>t3 src: FUNCTION T3 SYSEXEC ? ? TSO ISPF ?   

--
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread Paul Gilmartin
On Thu, 27 Jan 2022 11:43:34 -0600, Lionel B. Dyck wrote:

>I wrote a quick test - hope it helps:
>
>Test One:
>
>T1:
>/* rexx */
>parse source with src 
>say 'src:' src
>'%t2' 
> 
The "with" is probably misplaced.  It assigns the system name ("TSO")
to the variable "with".



>T2:
>/* rexx */  
>parse source with src   
>say 't2 src:' src   
>'%t3'   
>
>T3:
>/* rexx */   
>parse source with src
>say 't3 src:' src
>
>The results when executing T1:
>
>src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?  
>t2 src: COMMAND T2 SYSEXEC ? ? TSO ISPF ?   
>t3 src: COMMAND T3 SYSEXEC ? ? TSO ISPF ?   
>
>
>Test 2:
>
>T1:
>/* rexx */   
>parse source with src
>say 'src:' src   
>x = t2() 
>
>T2:
>/* rexx */  
>parse source with src   
>say 't2 src:' src   
>x = t3()
>return 0
>
>T3:
>/* rexx */   
>parse source with src
>say 't3 src:' src
>return 0 
>
>Results:
>
>src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?   
>t2 src: FUNCTION T2 SYSEXEC ? ? TSO ISPF ?   
>t3 src: FUNCTION T3 SYSEXEC ? ? TSO ISPF ?   

-- 
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread Seymour J Metz
PARSE SOURCE identifies the file from which the current REXX was invoked, not 
the file for the invoker.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Robert Prins [robert.ah.pr...@gmail.com]
Sent: Thursday, January 27, 2022 2:09 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Tracking CLIST/Exec Usage

On Thu, 27 Jan 2022 at 16:31, David Spiegel  wrote:

> Is it possible for an Exec/CLIST to determine from which Exec/CLIST it
> was invoked?
>


> If yes, please specify how.
>

<https://secure-web.cisco.com/1soMcJpLB6g6vYJIfHtP-zIM6G0K5qdI6Hq5F066fpyW_gj7hG6AOy2itc7TwUj3275ZcfpA2o1ipaV7w-Oh7_e35tMSptD6-UeeiSI7SM9hlcTLTiUoWCFAgw5ZBhiYpajwUMoqKGrGW2J1ingoBuzSLsAl9KpQ78USQnfkAHZGFvKFU_O-98KLF6Xwrh0GcqfhBrCR9w_wYvnPJB3fSnoaMUxlOHNPxGig93Vm51RsWAO_FoHQFh-ZnXe0VmpCrNRr-WQa3Yg9Fcr66zr2sAusZb-2sVG0mqLWLxycrcl5vNaIKJrIRnVuvd4qDo_D4CqThhTeeNm7a8b8BVkfiWagQWYq099PabTZrGzWEzUlwA9SN1kqY7lL1VX9liQbRktfshS1yeWtZkYibOeww4sN5nr3ZQ_QUBDNcH9Wyvj0JdaRBlXy0UXYkKC6sMKiXrVctml9azf0ygRlxiPh4bA/https%3A%2F%2Fwww.tek-tips.com%2Fviewthread.cfm%3Fqid%3D1162402>

Unformatted for some reason, so you'll have to add the line-breaks yourself.

Robert
--
Robert AH Prins
robert(a)prino(d)org
The hitchhiking grandfather 
<https://secure-web.cisco.com/1QCgBkr-XI1XRtAl2OhSYccx6IjLtYMQigd4tzJ40bZgaebncnxdq9xhiVqjVs7dNvjU7IPfcmRFL3P-7CFz1jBd1VjY8ZpJGLkaed6LzC7kHCXBTnnqIewgvLm5C9XVVvVIZMtQJA-SIkWJ0WwTCw3atlpi1iyIiY2eCdyOShiiVaDSneevm_cVeIMJlF11eTKehej9UYkLps49lutzzVqhBsvjdjN5zOlslpgxnGMM8vo16cm6aRI7VmaJte0OW7oNE7fBB3J1RljkcmDQAtPwptQtQIO0-WXG1pd_fKxPyBLGyxjgyjDeegp-LFTcKLHHwqrygekqsXe6873SneqOftJ04oSDUVxOcqjNxtc_j6Paq3crBCmmet9Gbml29iuTs29bpK5cdy0yE_FdauCblTqovq_v87Kl_JikRYVbSHCpovK6Ep798zjHIR9zl/https%3A%2F%2Fprino.neocities.org%2Findex.html>
Some REXX code for use on z/OS
<https://secure-web.cisco.com/1IsmylLwnRkXQH_4INsRrJ29k_RuKJIjPptKs5R9hNLux6qDlCEVlVx_hrGHaUCZjUjq02zKKFtLNpsXM-0Dw2fu4ZZ-JjkwQUHfRlkv9AFbV7TN2MB3-Zeg-K_MoXrbjlHxZ-06ennc92qJXT8hBXtVC64B_pAkWcIY4U5nl6c-CsGIauQowriw6s_NwdmyOY_ULNlysk2olhAH5iz4SFjDH3nU6XxdJJr_uPU_09eN3tL0FOJluLxD2po_WO-4bFRrBwFzyiXchkaMpRLRVidO4fQlc_dhUsvWwRG-w-zH21szma0p5d4oM3-tWcIM7K-B63WOT_EvcRS9IXc1rLHxswHhyNIaDvxHvFEY8HNKNEPASvYvTYU6aFcXvVsyWv9QstzpGPyXEHJTW733nKRT5MJ_GZbSshC5YTQGtuosNHSCIP4j0Y2mVmmy2dwda/https%3A%2F%2Fprino.neocities.org%2FzOS%2FzOS-Tools.html>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread Lionel B. Dyck
I wrote a quick test - hope it helps:

Test One:

T1:
/* rexx */
parse source with src 
say 'src:' src
'%t2' 

T2:
/* rexx */  
parse source with src   
say 't2 src:' src   
'%t3'   

T3:
/* rexx */   
parse source with src
say 't3 src:' src

The results when executing T1:

src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?  
t2 src: COMMAND T2 SYSEXEC ? ? TSO ISPF ?   
t3 src: COMMAND T3 SYSEXEC ? ? TSO ISPF ?   


Test 2:

T1:
/* rexx */   
parse source with src
say 'src:' src   
x = t2() 

T2:
/* rexx */  
parse source with src   
say 't2 src:' src   
x = t3()
return 0

T3:
/* rexx */   
parse source with src
say 't3 src:' src
return 0 

Results:

src: COMMAND T1 SYSEXEC ? ? TSO ISPF ?   
t2 src: FUNCTION T2 SYSEXEC ? ? TSO ISPF ?   
t3 src: FUNCTION T3 SYSEXEC ? ? TSO ISPF ?   

Lionel B. Dyck <><
Website: https://www.lbdsoftware.com
Github: https://github.com/lbdyck

“Worry more about your character than your reputation. Character is what you 
are, reputation merely what others think you are.”   - - - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
David Spiegel
Sent: Thursday, January 27, 2022 11:23 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Tracking CLIST/Exec Usage

Hi Robert,
I saw this, but, this displays the name of the executing Exec. I need the name 
of the Exec that invoked this one.
For example, if Exec A invoked Exec B, I would like (in Exec B) to determine 
that it was invoked by Exec A.

Regards,
David

On 2022-01-27 14:09, Robert Prins wrote:
> On Thu, 27 Jan 2022 at 16:31, David Spiegel  wrote:
>
>> Is it possible for an Exec/CLIST to determine from which Exec/CLIST 
>> it was invoked?
>>
>
>> If yes, please specify how.
>>
> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.
> tek-tips.com%2Fviewthread.cfm%3Fqid%3D1162402data=04%7C01%7C%7Cd7
> 240226dbdf44cf01e408d9e1b7ddc7%7C84df9e7fe9f640afb435%7C1%
> 7C0%7C637789002175392064%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiL
> CJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000sdata=o6t%2BD
> rzm%2BThU%2B8UPl46SG90mg6D2dFY91Fz1v3Ewjz8%3Dreserved=0>
>
> Unformatted for some reason, so you'll have to add the line-breaks yourself.
>
> Robert

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread David Spiegel

Hi Robert,
I saw this, but, this displays the name of the executing Exec. I need 
the name of the Exec that invoked this one.
For example, if Exec A invoked Exec B, I would like (in Exec B) to 
determine that it was invoked by Exec A.


Regards,
David

On 2022-01-27 14:09, Robert Prins wrote:

On Thu, 27 Jan 2022 at 16:31, David Spiegel  wrote:


Is it possible for an Exec/CLIST to determine from which Exec/CLIST it
was invoked?




If yes, please specify how.




Unformatted for some reason, so you'll have to add the line-breaks yourself.

Robert


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-27 Thread Robert Prins
On Thu, 27 Jan 2022 at 16:31, David Spiegel  wrote:

> Is it possible for an Exec/CLIST to determine from which Exec/CLIST it
> was invoked?
>


> If yes, please specify how.
>



Unformatted for some reason, so you'll have to add the line-breaks yourself.

Robert
-- 
Robert AH Prins
robert(a)prino(d)org
The hitchhiking grandfather 
Some REXX code for use on z/OS


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread kekronbekron
Are you willing to dumpster dive into SMF?
I'm sure you can whip something together with a few different record types.
First pulling out SYSPROG and SYSEXEC dataset list.
Then dataset/member stats on those.

With some amount of filtering, you'll be able to reduce the amount of data you 
need to process.

- KB

‐‐‐ Original Message ‐‐‐

On Thursday, January 27th, 2022 at 6:56 AM, Bob Bridges  
wrote:

> Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313
>
> /* Political tags — such as royalist, communist, democrat, populist, fascist, 
> liberal, conservative and so forth — are never basic criteria. The human race 
> divides politically into those who want people to be controled and those who 
> have no such desire. The former are idealists acting from the highest motives 
> for the greatest good of the greatest number. The latter are surly 
> curmudgeons, suspicious and lacking in altruism. But they are more 
> comfortable neighbors than the other sort. -from the Notebooks of Lazarus 
> Long */
>
> -Original Message-
>
> From: IBM Mainframe Discussion List IBM-MAIN@LISTSERV.UA.EDU On Behalf Of 
> Chris Hoelscher
>
> Sent: Wednesday, January 26, 2022 15:22
>
> Rename them and watch for complaints? (seriously I have seen this done - 
> after 90? Days delete what has not been renamed back
>
> -Original Message-
>
> From: IBM Mainframe Discussion List IBM-MAIN@LISTSERV.UA.EDU On Behalf Of 
> David Spiegel
>
> Sent: Wednesday, January 26, 2022 10:41 AM
>
> I have been given the task of cleaning up unused software.
>
> Part of that is identifying which CLISTs/Execs are not being used.
>
> Can someone please suggest a way to do this?
>
> -
>
> For IBM-MAIN subscribe / signoff / archive access instructions,
>
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Bob Bridges
We do that in security sometimes:  If we can't figure out who owns an ID, try 
turning it off and see who complains.  But 90 days isn't enough; there are some 
routines that are run only once a quarter or once a year.  For processes I use 
14 months.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* Political tags — such as royalist, communist, democrat, populist, fascist, 
liberal, conservative and so forth — are never basic criteria.  The human race 
divides politically into those who want people to be controled and those who 
have no such desire.  The former are idealists acting from the highest motives 
for the greatest good of the greatest number.  The latter are surly 
curmudgeons, suspicious and lacking in altruism.  But they are more comfortable 
neighbors than the other sort.  -from the Notebooks of Lazarus Long */

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Chris Hoelscher
Sent: Wednesday, January 26, 2022 15:22

Rename them and watch for complaints? (seriously I have seen this done - after 
90? Days delete what has not been renamed back

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
David Spiegel
Sent: Wednesday, January 26, 2022 10:41 AM

I have been given the task of cleaning up unused software.
Part of that is identifying which CLISTs/Execs are not being used.

Can someone please suggest a way to do this?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Chris Hoelscher
Rename them and watch for complaints? (seriously I have seen this done - after 
90? Days delete what has not been renamed back

Chris Hoelscher
IDMS/DB2 DBA and System Analyst
Kyndryl Inc. on assignment to Humana.com
502-407-7266

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
David Spiegel
Sent: Wednesday, January 26, 2022 10:41 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: [IBM-MAIN] Tracking CLIST/Exec Usage


[External Email: Use caution with links and attachments]

Hi List,
I have been given the task of cleaning up unused software.
Part of that is identifying which CLISTs/Execs are not being used.

Can someone please suggest a way to do this?

Thank you in advance.

Regards,
David

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

The information transmitted is intended only for the person or entity to which 
it is addressed
and may contain CONFIDENTIAL material.  If you receive this 
material/information in error,
please contact the sender and delete or destroy the material/information.

Humana Inc. and its subsidiaries comply with applicable Federal civil rights 
laws and
do not discriminate on the basis of race, color, national origin, ancestry, 
age, disability, sex,
marital status, gender, sexual orientation, gender identity, or religion. 
Humana Inc. and its subsidiaries do not
exclude people or treat them differently because of race, color, national 
origin, ancestry, age,
disability, sex, marital status, gender, sexual orientation, gender identity, 
or religion.

English: ATTENTION: If you do not speak English, language assistance services, 
free
of charge, are available to you. Call 1‐877‐320‐1235 (TTY: 711).

Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición servicios
gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235 (TTY: 711).

繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
服務。請致電 1‐877‐320‐1235 (TTY: 711)。

Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, gen sèvis 
èd
pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235 (TTY: 711).

Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z bezpłatnej
pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY: 711).

한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로
이용하실 수 있습니다. 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Roger Bolan
Hello,
Let me just add a little cautionary note to this thread.
Do not delete anything without knowing what it is used for.
Some of the products I support have CLIST or EXEC tools used to create or
change resources that can be used unchanged for years and then suddenly
require changes.
You might have some tools that are vital, despite being used only once
every few years.
Regards,
--Roger

On Wed, Jan 26, 2022 at 8:41 AM David Spiegel 
wrote:

> Hi List,
> I have been given the task of cleaning up unused software.
> Part of that is identifying which CLISTs/Execs are not being used.
>
> Can someone please suggest a way to do this?
>
> Thank you in advance.
>
> Regards,
> David
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Mike Shaw
CA TSO-MON does this handily, but you gotta spend money to get it.

Type 32 SMF records count TSO/E commands, but that would be counts of the
EXEC command without the CLIST name.

If I had to do this on my own, I would write a CSECT that I linked as a
front-end to the EXEC command (IKJCT429) in SYS1.CMDLIB and make my code
the entry point. It would extract the CP parameter list and extract/count
the name of the CLIST/Exec, then write a user SMF record to record usage of
the CLIST/Exec.

Mike Shaw
MVS/QuickRef Support Group
Chicago-Soft, Ltd.


On Wed, Jan 26, 2022 at 10:40 AM David Spiegel 
wrote:

> Hi List,
> I have been given the task of cleaning up unused software.
> Part of that is identifying which CLISTs/Execs are not being used.
>
> Can someone please suggest a way to do this?
>
> Thank you in advance.
>
> Regards,
> David
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Bob Bridges
Dunno whether you'll like this idea, but if don't want to download a package, 
you can insert a line into each REXX or CLIST that logs each time it runs in a 
dataset.  You can review the log occasionally and remove the line from any exec 
that you no longer need to review.  At some point (months?  Years?)  you can 
delete the members that haven't been executed.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* Please, Lord, let me prove that winning the lottery won't spoil me. */

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
David Spiegel
Sent: Wednesday, January 26, 2022 10:41

I have been given the task of cleaning up unused software.
Part of that is identifying which CLISTs/Execs are not being used.

Can someone please suggest a way to do this?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread David Spiegel

Hi Mark,
I should have mentioned that I was not given a budget to purchase/lease 
software for this project.

I will, however, mention it to my superiors.

Thanks and regards,
David

On 2022-01-26 10:48, Mark Jacobs wrote:

eventACTION by Action Software can do that.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fapi.protonmail.ch%2Fpks%2Flookup%3Fop%3Dget%26search%3Dmarkjacobs%40protonmail.comdata=04%7C01%7C%7C116e56a0a89a4313ebce08d9e0e34f52%7C84df9e7fe9f640afb435%7C1%7C0%7C637788089216513236%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000sdata=XZVpzpwacHaoEox9qiOYu9s4g4wxcXVImh1T9Hq%2FWzw%3Dreserved=0

--- Original Message ---

On Wednesday, January 26th, 2022 at 10:40 AM, David Spiegel 
 wrote:


For IBM-MAIN subscribe / signoff / archive access instructions,

send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Carmen Vitullo
IIRC David, PDSMAN can do this, I'm not sure of any other way to track 
CLIST REXX usage.


if its software tracking there are tools to do that also, the simplest 
was I think if if you can ID the software libraries and using your 
security tools audit the libraries usage, instead of revoking access you 
can add a WARN, IIRC to the dataset profile.


TSOMON was a tool I used long ago, I'm almost positive there's a CBT 
tool you can find that can do this.



Carmen

On 1/26/2022 9:40 AM, David Spiegel wrote:

Hi List,
I have been given the task of cleaning up unused software.
Part of that is identifying which CLISTs/Execs are not being used.

Can someone please suggest a way to do this?

Thank you in advance.

Regards,
David

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Tracking CLIST/Exec Usage

2022-01-26 Thread Mark Jacobs
eventACTION by Action Software can do that.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

--- Original Message ---

On Wednesday, January 26th, 2022 at 10:40 AM, David Spiegel 
 wrote:

> For IBM-MAIN subscribe / signoff / archive access instructions,
>
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN