Author |
Message |
Topic: Finding a string in big number of generations of a GDG |
Ravi
Replies: 6
Views: 3835
|
Forum: Utilities Posted: Wed Jun 10, 2009 11:47 pm Subject: Finding a string in big number of generations of a GDG |
Cool. Learnt
HIDE X.
Looked into QW HIDE and found that by giving RESET HIDE, we will be back to X ALL; F <string> ALL;
and for FILTER I tried FILTER ID EQ USERID and it was cool.
CLIP ... |
Topic: send results of TYRUN=SCAN to a dataset |
Ravi
Replies: 8
Views: 9263
|
Forum: Job Control Language(JCL) Posted: Wed Jun 10, 2009 11:11 pm Subject: send results of TYRUN=SCAN to a dataset |
MVS_blob,
1> The solution which Ram gave (ASG-JOB/SCAN) ie., which uses JSCAN you can submit the batch job directly and get the all outputs into a PDS in one single step. It works as I tried it ... |
Topic: Finding a string in big number of generations of a GDG |
Ravi
Replies: 6
Views: 3835
|
Forum: Utilities Posted: Wed Jun 10, 2009 10:36 pm Subject: Finding a string in big number of generations of a GDG |
Wow! Awesome solution.. I know that SRCHFOR exists in 3.4 and I used to only do for a PDS search.
This is amazing trick.. Thanks for sharing Kolusu. |
Topic: To Get the File name in Eazytrieve Program |
Ravi
Replies: 13
Views: 15128
|
Forum: Application Programming Posted: Wed Jun 10, 2009 4:02 am Subject: To Get the File name in Eazytrieve Program |
Thanks Kolusu
This solved my requirement what I wanted. Wanted to have the YYDDD format thast it.
There is issue with DATEJUL conversion. The YEAR is returning 109 CYY JDATE 160 and the DATE ... |
Topic: To Get the File name in Eazytrieve Program |
Ravi
Replies: 13
Views: 15128
|
Forum: Application Programming Posted: Wed Jun 10, 2009 2:11 am Subject: To Get the File name in Eazytrieve Program |
Now I am thinking how I can do it thru SAS.
I was unable to the file creation date, but got other attributes. Still digging.
Any appreciated.
//THE FILE DD DSN=MY.GDG(0),DIS ... |
Topic: To Get the File name in Eazytrieve Program |
Ravi
Replies: 13
Views: 15128
|
Forum: Application Programming Posted: Tue Jun 09, 2009 12:15 am Subject: To Get the File name in Eazytrieve Program |
Thanks Kolusu. I was trying with LISTDSI option earlier, but it will not accept my.gdg(0) as input. it was giving me an error. I have to give a full qualified name.
For my batch way of getting, I w ... |
Topic: To Get the File name in Eazytrieve Program |
Ravi
Replies: 13
Views: 15128
|
Forum: Application Programming Posted: Mon Jun 08, 2009 11:17 pm Subject: To Get the File name in Eazytrieve Program |
As dtf said, you can get the DSNAME (given the DDNAME) either using Assembler / COBOL / REXX
How to do it thru REXX
//STEP0001 EXEC PGM=IRXJCL,PARM='MYREXX'
//SYSPROC DD DISP=SHR,DSN ... |
Topic: GDG base creation using Rexx |
Ravi
Replies: 4
Views: 6295
|
Forum: TSO and ISPF Posted: Fri Jan 02, 2009 12:12 am Subject: GDG base creation using Rexx |
sinduja, I would recommd to update the forum, once you are comeup with a logic/solution.
I would appreciate it.  |
Topic: Catalog a File so that it doesnt go to MIGRAT2 mode |
Ravi
Replies: 9
Views: 4883
|
Forum: TSO and ISPF Posted: Fri Jan 02, 2009 12:08 am Subject: Catalog a File so that it doesnt go to MIGRAT2 mode |
Make HLQ1.MLQ1.MLQ2.ARVIND as a GDGBase and then start using the current version. In that way, you are backing up on whatz being FTP'ed too. If a MF job is doing the pull, then you need to allocate t ... |
Topic: File-aid Batch help |
Ravi
Replies: 14
Views: 29885
|
Forum: Utilities Posted: Mon Feb 12, 2007 5:05 pm Subject: File-aid Batch help |
Yes! I got that done with SORT.
But as we added other funtionality to the code I did that thru SAS.
Thanks for your immediate help... |
Topic: File-aid Batch help |
Ravi
Replies: 14
Views: 29885
|
Forum: Utilities Posted: Thu Feb 08, 2007 12:19 pm Subject: File-aid Batch help |
So we cannot print more than 132 bytes as a report.  |
Topic: File-aid Batch help |
Ravi
Replies: 14
Views: 29885
|
Forum: Utilities Posted: Thu Feb 08, 2007 10:12 am Subject: File-aid Batch help |
Posted: Sun Mar 27, 2005 9:08 am
hari haran,
You need to use the FIELDS parm to print specific columns. The VPRINT report output width is 132 characters. When the VPRINT output exceeds the re ... |
Topic: Out-Of-Seq records in KSDS |
Ravi
Replies: 7
Views: 10887
|
Forum: Utilities Posted: Tue Mar 14, 2006 12:43 am Subject: Out-Of-Seq records in KSDS |
Use SORT with vsam-key ascending as the sort criteria. This should solve the problem |
Topic: want to execute particular steps in a job.... |
Ravi
Replies: 2
Views: 1725
|
Forum: Application Programming Posted: Mon Mar 13, 2006 5:14 am Subject: want to execute particular steps in a job.... |
If its a one time run or its constant, then delete the unwanted steps and run the job.
If you want to use COND parameter of IF conditions, the we need to consider the return codes of each step. Based ... |
Topic: COBOL Level Variables |
Ravi
Replies: 3
Views: 2553
|
Forum: Application Programming Posted: Fri Mar 10, 2006 12:55 am Subject: COBOL Level Variables |
CASE 1
01 my-var1 ...
01 my-var2 ...
CASE 2
01 variables,
05 my-var1 ...
05 my-var2 ...
In the second case I can initialize both my-var 1 & 2 at a time using INITIALIZE variab ... |
|