Author |
Message |
Topic: Doug Nadel's Rexx scripts for highlighting SDSF panels |
stefan
Replies: 3
Views: 6461
|
Forum: TSO and ISPF Posted: Tue Nov 17, 2015 9:50 am Subject: Doug Nadel's Rexx scripts for highlighting SDSF panels |
Maybe "sdsf" is a site-specific program which itself issues LIBDEFs and ALTLIBs. So your private libraries won't get recognized.
Try to locate this program by typing "isrddn m sdsf&quo ... |
Topic: How to automate Mainframe batch monitoring |
stefan
Replies: 7
Views: 10683
|
Forum: Job Control Language(JCL) Posted: Wed Jul 04, 2012 1:25 am Subject: How to automate Mainframe batch monitoring |
not anymore, I assume  |
Topic: Digital issues of z/Journal and Mainframe Executive ? |
stefan
Replies: 0
Views: 7317
|
Forum: Tools and Downloads Posted: Fri Jan 27, 2012 8:40 am Subject: Digital issues of z/Journal and Mainframe Executive ? |
Hello out there,
could someone provide me with digital issues of z/Journal and Mainframe Executive. Both magazines are published by Bob Thomas and available via subscription to www.mainframezone.co ... |
Topic: ISPF Editor Compare Next Change |
stefan
Replies: 7
Views: 11425
|
Forum: TSO and ISPF Posted: Wed Dec 14, 2011 2:32 am Subject: ISPF Editor Compare Next Change |
Use the LOCATE command
Command ===> loc next special displays the next special line (cols, prof, tabs, mask, bnds, note).
Command ===> loc prev x .a .b displays the previous ex ... |
Topic: Retrieving the dataset names using REXX |
stefan
Replies: 38
Views: 35983
|
Forum: TSO and ISPF Posted: Wed May 11, 2011 1:30 am Subject: Re: Retrieving the dataset names using REXX |
I want to develop a REXX tool, which retrieves the dataset names from an jcl(Input & output).
I'm not sure if I understood you correctly as I'm not a native speaker of English, but maybe you're i ... |
Topic: Reading a flat file through Rexx |
stefan
Replies: 4
Views: 4553
|
Forum: TSO and ISPF Posted: Mon May 09, 2011 1:26 am Subject: Re: Reading a flat file through Rexx |
I assume you have coded something like his:
"execio diskr ddname (finis)"
do queued()
pull data
say substr(data,1 15) /* Oops! Data got capitalized someho ... |
Topic: Concatenation error in REXX |
stefan
Replies: 6
Views: 8540
|
Forum: TSO and ISPF Posted: Thu May 05, 2011 9:07 am Subject: Concatenation error in REXX |
LINEDATA = SUBSTR(LINE1 ,1 ,6) || '*' || SUBSTR(LINE2 ,1 ,6) appears to have spaces after line1 and line2
This should not make any difference.
substr(a,2,3)
substr(a , ... |
Topic: Concatenation error in REXX |
stefan
Replies: 6
Views: 8540
|
Forum: TSO and ISPF Posted: Thu May 05, 2011 9:03 am Subject: Re: Concatenation error in REXX |
4 +++ LINEDATA = SUBSTR(LINE1 ,1 ,6) |
IRX0013I Error running REXX99, line 4: Invalid character in program
On my machine the concatenation operator x'4F' is represented by ... |
Topic: Links / materials on REXX concepts. |
stefan
Replies: 6
Views: 4682
|
Forum: TSO and ISPF Posted: Thu May 05, 2011 3:22 am Subject: Links / materials on REXX concepts. |
Sorry for the inconvenience when trying to link to my old web site www.schlabb.741.com referenced in the previous post by SuperK.
Please use instead http://sites.google.com/site/schlabb/hom ... |
Topic: Finding the PDS name |
stefan
Replies: 12
Views: 8181
|
Forum: TSO and ISPF Posted: Mon Oct 19, 2009 5:13 am Subject: Finding the PDS name |
You might want to do this a little differently because if the user has PANELID, SYSNAME, or a few other things turned on, I think the word DSLIST won't be there.
As far as I can see, PANELID or SYSNA ... |
Topic: Finding the PDS name |
stefan
Replies: 12
Views: 8181
|
Forum: TSO and ISPF Posted: Fri Oct 09, 2009 2:51 am Subject: Finding the PDS name |
'ispexec vget zscreeni'
say word(zscreeni,wordpos('DSLIST',zscreeni)+1) |
Topic: HPS - SEER TECHNOLOGY |
stefan
Replies: 5
Views: 8987
|
Forum: Application Programming Posted: Wed Sep 30, 2009 2:30 am Subject: Re: HPS - SEER TECHNOLOGY |
Since several years now the product is called AppBuilder and is maintained and distributed by Blue Phoenix Solutions. A short product description can be found [url=http://www.bphx.com/en/Products/Page ... |
Topic: colored display in REXX |
stefan
Replies: 7
Views: 8255
|
Forum: TSO and ISPF Posted: Wed Sep 30, 2009 1:46 am Subject: Re: colored display in REXX |
I want to display a message in yellow or any other color using SAY command.
The simple answer is: NO.
The "say" command writes a line to the output stream. If it runs in foreground, it ... |
Topic: To find the DB2 subsystem |
stefan
Replies: 1
Views: 3008
|
Forum: TSO and ISPF Posted: Tue Mar 11, 2008 3:36 am Subject: To find the DB2 subsystem |
As far as I understand it's not possible to get the subsystem id, but maybe it's ok to know the name of the server you're connected to.
Use DSNREXX or RLX or similar product and issue the following S ... |
Topic: Analyse Jobs using tool??! |
stefan
Replies: 9
Views: 4564
|
Forum: Job Control Language(JCL) Posted: Wed Oct 10, 2007 6:59 am Subject: Re: Analyse Jobs using tool??! |
Can anyone suggest a tool based approach for this?
You might have a look at file679 on http://www.cbttape.org, an edit macro by Carlos Aguilera which converts JCL to a format which can be imported as ... |
|