Author |
Message |
Topic: Error message - COMMAND RT@XEF NOT FOUND |
RonB
Replies: 2
Views: 2968
|
Forum: TSO and ISPF Posted: Tue Aug 02, 2011 7:18 am Subject: Error message - COMMAND RT@XEF NOT FOUND |
The manual says:
If the CMD keyword is omitted from a )BODY statement, ISPF uses the first input field as a default command field. You can specify that you do not want a command field by using CMD( ... |
Topic: Continue processing when REXX error is encountered |
RonB
Replies: 11
Views: 9921
|
Forum: TSO and ISPF Posted: Wed Jun 01, 2011 10:12 am Subject: Continue processing when REXX error is encountered |
This type of error sort of reminds me of the COBOL divide by zero error. If you hadn't edited properly and perform a statement that causes division by zero, your program abends and you have no way of ... |
Topic: Cobol puzzle |
RonB
Replies: 7
Views: 4208
|
Forum: Application Programming Posted: Fri Jan 21, 2011 8:29 am Subject: Cobol puzzle |
unless of course, the invoking program issues a CANCEL before subsequent CALLs in which case A would be the result.
Only if the called program was dynamically linked. CANCEL has no effect on a static ... |
Topic: Removing Leading Zeros. |
RonB
Replies: 8
Views: 20212
|
Forum: Application Programming Posted: Thu Jan 20, 2011 8:33 am Subject: Removing Leading Zeros. |
Try this:
1) DEFINE a tally-field with a PIC of S9(2) COMP.
2) REDEFINE source-field as source-field-X with a PIC of X(17).
3) MOVE SPACES TO target-field.
4) MOVE ZERO TO tally-field.
5) INSPE ... |
Topic: XML PARSE issue |
RonB
Replies: 12
Views: 8255
|
Forum: Application Programming Posted: Wed Dec 08, 2010 8:26 am Subject: XML PARSE issue |
I believe that you should have gotten FIVE returns for the <EmployerName> Element:
XML-EVENT XML-TEXT
START-OF-ELEMENT EmployerName
CONTENT-CHARACTERS XYZ
CONTENT-CHARACTER < ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Thu Sep 02, 2010 12:29 pm Subject: Batch pipes and DFSORT |
That 'splains it. Thanks, Frank, and Kolusu. |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Thu Sep 02, 2010 12:03 pm Subject: Batch pipes and DFSORT |
EQUALS is the DEFAULT option with SELECT operator of DFSORT. So you really don't have to code it.
Does that mean that the SELECT operator somehow knows what ALL of the SORT fields are ( not just th ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Thu Sep 02, 2010 10:58 am Subject: Batch pipes and DFSORT |
kolusu,
Yes, the second statement should have been SORT, not SELECT. Thanks for the correction.
Just out of curiosity, why did you add the EQUALS parameter to the last sort statement, and remove it ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Thu Sep 02, 2010 8:06 am Subject: Batch pipes and DFSORT |
Unless you will NEED the output of JOB#1, JOB#2, and JOB#3 at some later date/time, I beleive that you can combine all 4 jobs into 1 job by using ICETOOL (note: the following is NOT tested, and only r ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Tue Aug 31, 2010 4:08 pm Subject: Batch pipes and DFSORT |
That was my thinking as well, papadi. That's why I asked to see the sort control statements from each of the four runs - in order to see if "consolidation" might alleviate the need for at le ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Tue Aug 31, 2010 7:19 am Subject: Batch pipes and DFSORT |
It would help if you provided:
1) The input RECFM and LRECL of the SORTIN file to the DFSORT1 job
2) The SYSIN Sort Statements to the DFSORT1 job
3) The SYSIN Sort Statements to the DFSORT2 job
4) ... |
Topic: Batch pipes and DFSORT |
RonB
Replies: 21
Views: 12973
|
Forum: Utilities Posted: Mon Aug 30, 2010 8:17 am Subject: Batch pipes and DFSORT |
When batch pipes are used, a receiving job must wait until data starts being WRITTEN to the batch pipe before it can start READING data from the batch pipe. Hence, Job#2 cannot start READING until Job ... |
Topic: Help required regarding Path File |
RonB
Replies: 5
Views: 4968
|
Forum: CICS and Middleware Posted: Thu Aug 12, 2010 5:29 pm Subject: Help required regarding Path File |
Do an internet search for the algorithms related to doing sequential searches ( n = 50 million in your case ) and the algorithms related to doing B+tree searches ( n = 500 million in your case ) and l ... |
Topic: absolute time to normal time |
RonB
Replies: 13
Views: 9380
|
Forum: Application Programming Posted: Thu Aug 12, 2010 7:57 am Subject: absolute time to normal time |
Well, first you need to understand that the routine, as coded, will ROUND the answer to the nearest SECOND - so if you want milliseconds you will have to NOT do the rounding, else you will end up with ... |
Topic: absolute time to normal time |
RonB
Replies: 13
Views: 9380
|
Forum: Application Programming Posted: Wed Aug 11, 2010 10:38 am Subject: absolute time to normal time |
@all
The code I posted was cut/aligned/pasted from another board and was NOT posted there enclosed with nice code tags - so multiple spaces appeared in the post as only one space - hence the unfortun ... |
|