Author |
Message |
Topic: Relacement of GO TO in COBOL |
Pudah
Replies: 3
Views: 2184
|
Forum: Application Programming Posted: Fri May 25, 2007 12:25 pm Subject: Relacement of GO TO in COBOL |
...then the whole effort is folly.
I wish I was articulate enough to explain this convincingly to the mgmt where I work as they are embarking on a similar misadventure (I wonder if rnanavaty and I ar ... |
Topic: Help with ALTERNATE INDEX |
Pudah
Replies: 10
Views: 7448
|
Forum: Data Management Posted: Wed Feb 21, 2007 6:15 pm Subject: Help with ALTERNATE INDEX |
Programmer, that did the trick. I am now getting the expected status codes:
GOT TO PROCESS-INPUTLST
SEARCH KEY: 3333333333
READ STATUS: 02 ... |
Topic: Help with ALTERNATE INDEX |
Pudah
Replies: 10
Views: 7448
|
Forum: Data Management Posted: Wed Feb 21, 2007 5:44 am Subject: Help with ALTERNATE INDEX |
Thanks for the suggestion Programmer. Making that change does not alter the output of the program. It is getting status code 23 on all attempts to read from the VSAM file with the alternate key. |
Topic: Help with ALTERNATE INDEX |
Pudah
Replies: 10
Views: 7448
|
Forum: Data Management Posted: Tue Feb 20, 2007 7:37 pm Subject: Help with ALTERNATE INDEX |
Execution JCL is shown above. Here is is again:
//STEP01 EXEC PGM=ALTINDEX
//STEPLIB DD DSN=MY.LOADLIB,DISP=SHR
//SYSOUT DD SYSOUT=*
... |
Topic: Help with ALTERNATE INDEX |
Pudah
Replies: 10
Views: 7448
|
Forum: Data Management Posted: Tue Feb 20, 2007 5:04 am Subject: Help with ALTERNATE INDEX |
Thanks shakkia, but that produces a compiler error. |
Topic: Help with ALTERNATE INDEX |
Pudah
Replies: 10
Views: 7448
|
Forum: Data Management Posted: Sat Feb 17, 2007 9:35 am Subject: Help with ALTERNATE INDEX |
I'm trying to write a COBOL program to process a VSAM file that uses an alternate index. The program reads a flat file that contains a list of customer numbers and invoice numbers. I need to take a cu ... |
Topic: Fileaid Search |
Pudah
Replies: 3
Views: 2136
|
Forum: Utilities Posted: Wed Nov 15, 2006 7:36 am Subject: Fileaid Search |
It's been a long time since my shop got cheap and got rid of File-Aid, but looking thru my old JCL, I think that you can get what you want by using MOVE. Something like...
$$DD01 LIST IF=(1,0,C ... |
Topic: From which load lib was program executed |
Pudah
Replies: 6
Views: 3121
|
Forum: Application Programming Posted: Wed Sep 20, 2006 6:25 pm Subject: From which load lib was program executed |
There is a very complex example in the SHOWMVS program that semigeezer mentioned (you can get it from the [url=http://www.cbttape.org/cbtdowns.htm]CBT tape lib) |
Topic: From which load lib was program executed |
Pudah
Replies: 6
Views: 3121
|
Forum: Application Programming Posted: Tue Sep 19, 2006 4:10 am Subject: From which load lib was program executed |
kolusu, I really need to improve my search skills, because I should have been able to find that thread. Unfortunately it doesn't help me.
semigeezer, yes, I do want the program to do it itself. Tha ... |
Topic: From which load lib was program executed |
Pudah
Replies: 6
Views: 3121
|
Forum: Application Programming Posted: Mon Sep 18, 2006 5:18 pm Subject: From which load lib was program executed |
Do any of you know a method to use to get an assembler program to write out what load library it was executed from? I've searched the forum on all of the terms that I could think of and nothing turns ... |
Topic: YYDDD date math in COBOL |
Pudah
Replies: 2
Views: 2585
|
Forum: Application Programming Posted: Mon Jul 24, 2006 8:13 am Subject: YYDDD date math in COBOL |
Thanks Kolusu, I don't know how I missed that post in my search. |
Topic: YYDDD date math in COBOL |
Pudah
Replies: 2
Views: 2585
|
Forum: Application Programming Posted: Sat Jul 22, 2006 1:42 pm Subject: YYDDD date math in COBOL |
Maybe I'm using the wrong terms, but I've been searching the forum and I haven't been able to find any threads to help with what I am trying to do.
I've got an iput record that contains a date in Y ... |
Topic: list of all members from the librarian |
Pudah
Replies: 4
Views: 3000
|
Forum: Utilities Posted: Fri Jul 07, 2006 6:58 am Subject: list of all members from the librarian |
If you just want a list of the members (as opposed to a listing of the contents of each member) this should do the trick:
//LIBRINDX EXEC PGM=LIBARIAN
//MASTER DD DSN=SOME ... |
Topic: Convert hex to character |
Pudah
Replies: 5
Views: 2777
|
Forum: Application Programming Posted: Tue Aug 17, 2004 4:11 pm Subject: Convert hex to character |
None of those links actually solves the problem, which is about converting a byte to printable hex characters using Assembler.
Mervyn is correct. I had done a search and found those threads. But none ... |
Topic: Convert hex to character |
Pudah
Replies: 5
Views: 2777
|
Forum: Application Programming Posted: Sat Aug 14, 2004 11:04 am Subject: Convert hex to character |
I have searched the forum but haven't been able to find this topic covered.
Say I have a field XL1'D3'. I want to convert it to CL2'D3'. Is there a way to do this in assembler? |
|