Author |
Message |
Topic: Removing end pipe from end of line |
semigeezer
Replies: 4
Views: 3895
|
Forum: TSO and ISPF Posted: Sat Jul 04, 2015 6:47 pm Subject: Removing end pipe from end of line |
one c = "'data|data|data|data|||' ;"
Do While 0 < pos("|'",c);
Parse value reverse(c) With a "|" d
c = reverse(a || d)
End
Say c
T ... |
Topic: DFSORT in Rational Development and Test Environment (RDT'z) |
semigeezer
Replies: 5
Views: 4041
|
Forum: Utilities Posted: Fri Nov 07, 2014 10:20 am Subject: DFSORT in Rational Development and Test Environment (RDT'z) |
RDT is a z hardware emulator that runs only on Linux. DFSORT runs fine within it. The only place where Windows comes in here is that the front end (3270, RDz, etc) to the emulated mainframe can be ... |
Topic: Selective copy from sdsf to dataset |
semigeezer
Replies: 28
Views: 24241
|
Forum: TSO and ISPF Posted: Wed Mar 19, 2014 1:48 am Subject: Selective copy from sdsf to dataset |
SDSF has a rich Rexx interface. Googling SDSF REXX shows the doc as the 1st item (Using SDSF with the REXX programming language) |
Topic: Edit command to create MSG text in prefix area |
semigeezer
Replies: 18
Views: 12856
|
Forum: TSO and ISPF Posted: Tue Feb 25, 2014 1:36 am Subject: Edit command to create MSG text in prefix area |
If you are feeling adventurous, you can write this type of macro using more detailed compiler output which I think is called SYSADATA or ADATA (??). Using that data instead of a listing gives consist ... |
Topic: Edit command to create MSG text in prefix area |
semigeezer
Replies: 18
Views: 12856
|
Forum: TSO and ISPF Posted: Thu Feb 20, 2014 2:21 pm Subject: Edit command to create MSG text in prefix area |
Also. I'd suggest you never use the variable name in concatenation with edit commands like this. Instead, set the variable and use parenthesis notation.
With concatenation, if your variable conta ... |
Topic: ISPF EDIT locate ERROR |
semigeezer
Replies: 2
Views: 3117
|
Forum: TSO and ISPF Posted: Thu Feb 20, 2014 11:44 am Subject: ISPF EDIT locate ERROR |
It has been a decade since I did this, but ==ERR> applies to data lines, not message lines and the easiest way to produce one is to do a change command that will fail on that line. I used to do a ... |
Topic: IEHLIST - output fields unformated outpu |
semigeezer
Replies: 5
Views: 4865
|
Forum: Utilities Posted: Fri Dec 13, 2013 3:12 pm Subject: IEHLIST - output fields unformated outpu |
I would not rely on user data for *anything*.
They are easily changed by copies, ISPF utilities and services, utilities, macros and anything else that writes to the PDS. They are sort of 'defacto' ... |
Topic: COBOL to XML |
semigeezer
Replies: 12
Views: 21097
|
Forum: Tools and Downloads Posted: Sat Jul 07, 2012 1:50 am Subject: COBOL to XML |
Sorry - I didn't follow this thread closely - maybe this was covered... but one consideration... if you have 100TB of raw data, then consider that XML tags, white space and possibly attributes and str ... |
Topic: Retiring after 43+ years with IBM |
semigeezer
Replies: 11
Views: 12498
|
Forum: Utilities Posted: Thu May 17, 2012 12:04 am Subject: Retiring after 43+ years with IBM |
Frank, it's been great working with you here and learning from you. I wish you the best in your retirement.
Maybe you should see if IBM would spring for a copy of Rational Developer & Test E ... |
Topic: TSO and ISPF..... what does FIND_COUNTS does? |
semigeezer
Replies: 20
Views: 18577
|
Forum: TSO and ISPF Posted: Sun May 06, 2012 2:52 am Subject: TSO and ISPF..... what does FIND_COUNTS does? |
add
address ispexec "CONTROL ERRORS CANCEL"
in the macro to let the session crash on an error OR print zerrsm & zerrlm after any RC >= 8.
Either method should show what the RC2 ... |
Topic: TSO and ISPF..... what does FIND_COUNTS does? |
semigeezer
Replies: 20
Views: 18577
|
Forum: TSO and ISPF Posted: Thu May 03, 2012 12:06 pm Subject: TSO and ISPF..... what does FIND_COUNTS does? |
Line 4 of macroex: FCOUNT is not an editor command. The macro may be failing before executing your FIND or if FCOUNT is a macro, that macro (FCOUNT) may be corrupting the stack. |
Topic: Diff between CALL and SELECT |
semigeezer
Replies: 12
Views: 13203
|
Forum: TSO and ISPF Posted: Tue Apr 10, 2012 10:29 pm Subject: Diff between CALL and SELECT |
For this case, there is very little operational difference. The main differences are that SELECT PGM() loads the module and calls it within the same task as the ISPF screen is running (LINK macro). ... |
Topic: Rexx to take output spool reports from sdsf to FTP to server |
semigeezer
Replies: 3
Views: 8176
|
Forum: TSO and ISPF Posted: Wed Apr 04, 2012 6:03 pm Subject: Rexx to take output spool reports from sdsf to FTP to server |
There is a section in the SDSF books (I think) in using SDSF with Rexx. The interface is quite good and allows you to get output from SDSF commands into stem variables. You then process the stem var ... |
Topic: ISPF Editor Compare Next Change |
semigeezer
Replies: 7
Views: 7912
|
Forum: TSO and ISPF Posted: Wed Dec 14, 2011 10:18 pm Subject: ISPF Editor Compare Next Change |
LOC NEXT|PREV SPECIAL, especially assigned to a PF key is useful, but I find the exclude option easier...
COMP NEXT X
or
COMP some-dataset-or-member X
You can change the number of lines that ... |
Topic: Need a list of empty datasets from a saved list |
semigeezer
Replies: 6
Views: 7400
|
Forum: Job Control Language(JCL) Posted: Wed Nov 09, 2011 6:02 pm Subject: Need a list of empty datasets from a saved list |
Quick and dirty solution as a Rexx exec running in TSO:
/* Rexx - find empty sequential data sets in list of data sets */
/* created from ISPF 3.4 with SAVE NAMES command. ... |
|