Author |
Message |
Topic: Retiring after 43+ years with IBM |
taltyman
Replies: 11
Views: 12498
|
Forum: Utilities Posted: Mon May 21, 2012 8:26 am Subject: Retiring after 43+ years with IBM |
Best wishes and enjoy your retirement. |
Topic: Recovering a deleted file |
taltyman
Replies: 7
Views: 7417
|
Forum: TSO and ISPF Posted: Tue May 08, 2012 4:25 pm Subject: Recovering a deleted file |
Why would a "personal" file be that critical?
|
Topic: Send an email in PDF format without using xmitip |
taltyman
Replies: 7
Views: 9430
|
Forum: Job Control Language(JCL) Posted: Thu Mar 22, 2012 9:58 am Subject: Send an email in PDF format without using xmitip |
You may want to look at this code http://mmiller.myweb.uga.edu/pdf/txt2pdf
Works for me to convert text to pdf. Then email the resulting file |
Topic: Sending Email thru JCL wid PS file contents as body of email |
taltyman
Replies: 23
Views: 31678
|
Forum: Job Control Language(JCL) Posted: Mon Nov 14, 2011 9:24 am Subject: Sending Email thru JCL wid PS file contents as body of email |
good grief, surely if you can send an attachment the you can send it as a non-attachment. Here's a snippet of code I use.
"alloc fi(mailtext) da('"dsn"') shr" ... |
Topic: How to modify ISPF line commands? |
taltyman
Replies: 20
Views: 15993
|
Forum: TSO and ISPF Posted: Tue Aug 02, 2011 4:28 pm Subject: How to modify ISPF line commands? |
Are you simply trying to disallow someone from submitting a member from browse or view? If so then the TSO ISPCCONF ISPF configurator can be used to change those settings. You must be aware of the i ... |
Topic: Listcat with VTOC information |
taltyman
Replies: 10
Views: 16388
|
Forum: Utilities Posted: Thu Jul 28, 2011 10:24 am Subject: Listcat with VTOC information |
If you just want alias info from the master catalog then what's wrong with listcat alias? Just be aware that not every hlq will be in the master catalog as aliases. For example SYS1 probably will no ... |
Topic: Create report using SAS |
taltyman
Replies: 9
Views: 5523
|
Forum: Application Programming Posted: Thu Jun 09, 2011 4:33 pm Subject: Create report using SAS |
What... you guys aren't going to complain that chandra also keyed in the input wrong and did not capitalize every letter in New YORK?
The actual answer to the OP's question is
Yes
:bon ... |
Topic: Retrieving the dataset names using REXX |
taltyman
Replies: 38
Views: 33004
|
Forum: TSO and ISPF Posted: Tue May 10, 2011 2:56 pm Subject: Retrieving the dataset names using REXX |
I'm not aware of any sample or free code that does what you want. There are commercial available tools. You could write some code in rexx or the language of your choice but it would not be trivial. ... |
Topic: Retrieving the dataset names using REXX |
taltyman
Replies: 38
Views: 33004
|
Forum: TSO and ISPF Posted: Mon May 09, 2011 10:56 am Subject: Retrieving the dataset names using REXX |
ok, I mis-interpreted what you were asking. I assumed you meant a running job and not a scan of jobs. |
Topic: Retrieving the dataset names using REXX |
taltyman
Replies: 38
Views: 33004
|
Forum: TSO and ISPF Posted: Mon May 09, 2011 10:51 am Subject: Retrieving the dataset names using REXX |
yes...
Here is a sample, assuming that the DD ISPTABL is allocated.
/* REXX */
DDINFO = LISTDSI("ISPTABL" "FILE")
SAY SYSDS ... |
Topic: Concatenation error in REXX |
taltyman
Replies: 6
Views: 7678
|
Forum: TSO and ISPF Posted: Mon May 09, 2011 8:10 am Subject: Concatenation error in REXX |
As others have said, turn HEX on and look at your line of code to verify your vertical bar character is correct. |
Topic: Concatenation error in REXX |
taltyman
Replies: 6
Views: 7678
|
Forum: TSO and ISPF Posted: Thu May 05, 2011 8:36 am Subject: Concatenation error in REXX |
LINEDATA = SUBSTR(LINE1 ,1 ,6) || '*' || SUBSTR(LINE2 ,1 ,6) appears to have spaces after line1 and line2 |
Topic: KSDS contention problem |
taltyman
Replies: 8
Views: 12678
|
Forum: Data Management Posted: Tue Apr 19, 2011 4:49 pm Subject: KSDS contention problem |
You could write a step that would check for enqueue for your dataset and have it in a loop with a timer.
Run it in a batch TSO step. Here are the sample REXXs that you can modify and combine.
... |
Topic: How to pass a long parm to REXX thru batch jcl |
taltyman
Replies: 5
Views: 7599
|
Forum: TSO and ISPF Posted: Thu Feb 24, 2011 10:21 am Subject: How to pass a long parm to REXX thru batch jcl |
How you do this may be dictated by the method you are using to get the dataset names from your users. For example if you are using TSO/ISPF then maybe panel processing is your front end. If so then ... |
Topic: FTP wildcard |
taltyman
Replies: 6
Views: 8374
|
Forum: Job Control Language(JCL) Posted: Thu Feb 24, 2011 10:17 am Subject: FTP wildcard |
I think superk is correct. I don't think you can specify the destination file name using a mget. also mgets and mputs run into lots of issues if the operating systems are different since the syntax ... |
|