Author |
Message |
Topic: Pass a string from edit macro to command line |
Terry_Heinze
Replies: 6
Views: 4707
|
Forum: TSO and ISPF Posted: Tue Nov 09, 2021 9:18 am Subject: Pass a string from edit macro to command line |
Could you simply copy "compare 'my.hlq.cobol(member)' " to the clipboard, then paste the clipboard contents into your command line of the member you're editing? |
Topic: Initaiize group variable |
Terry_Heinze
Replies: 6
Views: 7771
|
Forum: Application Programming Posted: Wed Sep 29, 2021 8:43 am Subject: Initaiize group variable |
Good point. Be sure to read all about INITIALIZE in the manual. It does/does not do what you might expect. |
Topic: Initaiize group variable |
Terry_Heinze
Replies: 6
Views: 7771
|
Forum: Application Programming Posted: Tue Sep 28, 2021 10:00 am Subject: Initaiize group variable |
One option would be to INITIALIZE the copybook one time, save it off, and every time thereafter, move the saved off initialized copybook to copybook. |
Topic: Cobol question internal table overflow |
Terry_Heinze
Replies: 5
Views: 4801
|
Forum: Application Programming Posted: Fri May 14, 2021 8:15 am Subject: Cobol question internal table overflow |
Vijay,
Neither of your PERFORMs modifies the value of J. That's why it's LOW-VALUES. |
Topic: REPLACE OFF |
Terry_Heinze
Replies: 7
Views: 4506
|
Forum: Application Programming Posted: Mon Dec 07, 2020 9:07 am Subject: REPLACE OFF |
Have you compiled with/without the REPLACE OFF and compared the results? |
Topic: REPLACE OFF |
Terry_Heinze
Replies: 7
Views: 4506
|
Forum: Application Programming Posted: Fri Dec 04, 2020 8:53 am Subject: REPLACE OFF |
It's been a long time ago, but if I remember correctly, it means, "skip expanding the member named in the copy statement". It was a method of reducing the length of the listing. Have you tri ... |
Topic: What is Advanced Function Presentation? |
Terry_Heinze
Replies: 12
Views: 6985
|
Forum: Application Programming Posted: Wed Jul 15, 2020 11:06 am Subject: What is Advanced Function Presentation? |
That one worked:
Welcome to the IBM Publications Center |
Topic: What is Advanced Function Presentation? |
Terry_Heinze
Replies: 12
Views: 6985
|
Forum: Application Programming Posted: Tue Jul 14, 2020 9:12 pm Subject: What is Advanced Function Presentation? |
I get it also, kolusu:
Hmm. We’re having trouble finding that site.
We can’t connect to the server at ehone.ibm.com.
If that address is correct, here are three other things you ... |
Topic: Testing |
Terry_Heinze
Replies: 2
Views: 4173
|
Forum: Other Technical Topics Posted: Thu May 07, 2020 8:44 pm Subject: Testing |
Of course! |
Topic: Testing |
Terry_Heinze
Replies: 2
Views: 4173
|
Forum: Other Technical Topics Posted: Wed May 06, 2020 9:15 pm Subject: Testing |
Sorry -- just testing. |
Topic: Extract a record based on date range |
Terry_Heinze
Replies: 4
Views: 3073
|
Forum: Utilities Posted: Tue Feb 05, 2019 9:12 am Subject: Extract a record based on date range |
gps 94,
Please code tags for readability:
+----8----+----9----+----0----+----1----+----2----+----3
********************************* Top of Data **********
,TEST,2006-11-06,06:00:00,20 ... |
Topic: S0C7 in ADD 1 statement |
Terry_Heinze
Replies: 7
Views: 4414
|
Forum: Application Programming Posted: Fri Aug 10, 2018 12:53 pm Subject: S0C7 in ADD 1 statement |
You need to determine what the values of WS-IN-POS and WS-VAR-TAG-POS were at the time that MOVE statement was executed. Somehow, a greater than character (X'6E') got moved into position 7 of OUT2-COU ... |
Topic: S0C7 in ADD 1 statement |
Terry_Heinze
Replies: 7
Views: 4414
|
Forum: Application Programming Posted: Fri Aug 10, 2018 8:34 am Subject: S0C7 in ADD 1 statement |
OUT2-COUNT is an elementary item. What is the group item it belongs to and does it get modified before you ADD 1 TO OUT2-COUNT? You could redefine OUT2-COUNT as PIC X(9) and prior to ADDing, insert t ... |
Topic: William Collins aka Bill Woodger aka Billy Boyo |
Terry_Heinze
Replies: 2
Views: 10995
|
Forum: About Mvsforums Posted: Fri Jun 15, 2018 8:27 am Subject: William Collins aka Bill Woodger aka Billy Boyo |
Yes, he WILL be missed. He was one of the more prolific and helpful folks on these boards. |
Topic: Search all using different keys |
Terry_Heinze
Replies: 8
Views: 4526
|
Forum: Application Programming Posted: Fri Jun 08, 2018 8:20 am Subject: Search all using different keys |
Would another option be to redefine t-idam-tbl so now you have the same table sorted in 2 different sequences. I don't think COBOL allows the same table to have 2 different keys for the same table at ... |
|