Author |
Message |
Topic: cobol copybooks in easytrieve |
MVS_blob
Replies: 5
Views: 9386
|
Forum: Application Programming Posted: Wed Oct 21, 2009 3:18 am Subject: cobol copybooks in easytrieve |
Anui, thx for your reply. However, as per my post above, I tried running CBLCNVRT but couldn't find the library at work. Ah well, i'll keep on searching, and if I find an alternative solution will pos ... |
Topic: cobol copybooks in easytrieve |
MVS_blob
Replies: 5
Views: 9386
|
Forum: Application Programming Posted: Mon Oct 19, 2009 9:34 am Subject: cobol copybooks in easytrieve |
Hi,
I've got a cobol copybook that I want to use in my new easytrieve program.
Somewhere I read that the program called CBLCNVRT that can convert a cobol copybook to an easytrieve file definitio ... |
Topic: SDSF data in column 1 |
MVS_blob
Replies: 3
Views: 3427
|
Forum: Job Control Language(JCL) Posted: Wed Jul 22, 2009 8:09 am Subject: SDSF data in column 1 |
thx.
WRITE PRNTFILE-RECORD FROM RPT-HEADER1
AFTER ADVANCING PAGE
did the trick. |
Topic: SDSF data in column 1 |
MVS_blob
Replies: 3
Views: 3427
|
Forum: Job Control Language(JCL) Posted: Tue Jul 21, 2009 4:53 am Subject: SDSF data in column 1 |
Hi all,
I've got a Easytrieve report produced on SDSF that I need to re-create using COBOL... Finished coding everything when I noticed that the Easytrieve report data starts in column 2, as per al ... |
Topic: send results of TYRUN=SCAN to a dataset |
MVS_blob
Replies: 8
Views: 9201
|
Forum: Job Control Language(JCL) Posted: Tue Jun 16, 2009 9:14 am Subject: send results of TYRUN=SCAN to a dataset |
Ravi,
Unfortunately, my workplace doesn't offer any of the above... Looks like i'll have to write my own. |
Topic: send results of TYRUN=SCAN to a dataset |
MVS_blob
Replies: 8
Views: 9201
|
Forum: Job Control Language(JCL) Posted: Wed Jun 03, 2009 11:04 am Subject: send results of TYRUN=SCAN to a dataset |
Ram,
Yes, XDC would work, but when you've got thousands of jobs, its impractical to perform XDC thousands of times.
.... after some research, I've found a way to get the data from SDSF directly: ... |
Topic: send results of TYRUN=SCAN to a dataset |
MVS_blob
Replies: 8
Views: 9201
|
Forum: Job Control Language(JCL) Posted: Tue May 12, 2009 8:11 am Subject: send results of TYRUN=SCAN to a dataset |
Hi all!
I'll begin with some background..
The company I work with uses alot of JCL substitutions:
//IM58ODAC JOB ' ',MSGCLASS=X,CLASS=A
//STEP001 EXEC PROC1,
// ENV= ... |
Topic: DFSORT - writing packed decimal with sign of F |
MVS_blob
Replies: 5
Views: 4775
|
Forum: Utilities Posted: Tue Aug 05, 2008 6:24 pm Subject: DFSORT - writing packed decimal with sign of F |
Thanks kolusu,
TO=PDF works great.
The reason I need to have the packed sign as 'F' is because the output file will be compared with an existing production file. The production file is read by a ... |
Topic: DFSORT - writing packed decimal with sign of F |
MVS_blob
Replies: 5
Views: 4775
|
Forum: Utilities Posted: Tue Aug 05, 2008 3:01 am Subject: DFSORT - writing packed decimal with sign of F |
Hi,
I've got this bit of code which will convert a number to packed decimal with a sign of 'C'.
Code:
SORT FIELDS=COPY
OUTFIL FNAMES=SORTOUT,
OUTREC=( ... |
Topic: REXX: Hex to Character Conversion Problem |
MVS_blob
Replies: 8
Views: 6831
|
Forum: TSO and ISPF Posted: Thu Jul 24, 2008 2:23 am Subject: REXX: Hex to Character Conversion Problem |
 |
Topic: utility to trace program flow |
MVS_blob
Replies: 3
Views: 3863
|
Forum: Problem Determination Posted: Tue Jul 22, 2008 11:59 pm Subject: utility to trace program flow |
so...looks like there isn't an existing utility to trace program flows.
Consider this...
As all COBOL programs are converted to assembler instructions, I've done some research, and found some si ... |
Topic: REXX: Hex to Character Conversion Problem |
MVS_blob
Replies: 8
Views: 6831
|
Forum: TSO and ISPF Posted: Tue Jul 22, 2008 11:00 pm Subject: REXX: Hex to Character Conversion Problem |
Geezer,
You were right. CAPS OFF fixed the problem.
Thanks!  |
Topic: REXX: Hex to Character Conversion Problem |
MVS_blob
Replies: 8
Views: 6831
|
Forum: TSO and ISPF Posted: Wed Jul 16, 2008 2:38 am Subject: REXX: Hex to Character Conversion Problem |
Interesting...
I just ran this code:
/* REXX */
TEXT1 = '419F'
TEXT2 = '435F' ... |
Topic: REXX: Hex to Character Conversion Problem |
MVS_blob
Replies: 8
Views: 6831
|
Forum: TSO and ISPF Posted: Tue Jul 15, 2008 6:55 pm Subject: REXX: Hex to Character Conversion Problem |
Hi all,
I've got a snippet of code that converts Hex to Char.
x2c(text)
Pretty basic...
When text = '000F', the conversion works fine.
When text = '016F', the conversion works fine ... |
Topic: size of the PROCEDURE DIVISION USING statement |
MVS_blob
Replies: 6
Views: 3393
|
Forum: Application Programming Posted: Tue Jul 01, 2008 6:25 pm Subject: size of the PROCEDURE DIVISION USING statement |
dsh33782, thanks for your comments.
32767 passed variables is the limit set by the COBOL for z/OS 3.4.1 compiler. (Thats alot of variables - the programs I work on don't reach anywhere near that li ... |
|