Author |
Message |
Topic: CICS JSON Utility DFHJS2LS |
PaulPeplinski
Replies: 2
Views: 4267
|
Forum: Application Programming Posted: Fri Aug 19, 2022 12:43 pm Subject: CICS JSON Utility DFHJS2LS |
I've been struggling with this for a couple days now. I have a java11 server running on z/OS. From my browser I can do a /openapi.json, which I presume gives me the json that I need to create the CICS ... |
Topic: DB2 version 8 with cobol older than Enterprise cobol |
PaulPeplinski
Replies: 15
Views: 7195
|
Forum: Database Posted: Tue Jul 31, 2007 1:11 pm Subject: DB2 version 8 with cobol older than Enterprise cobol |
The definitive answer is in DB2 V8 - Everything you wanted to know....
which states (in part) the requisites. My understanding is that the DB2 V8 precompiler (once DSNHDECP NEWFUN=YES) COULD generat ... |
Topic: Syncsort Joinkeys |
PaulPeplinski
Replies: 10
Views: 16039
|
Forum: Utilities Posted: Thu May 24, 2007 3:38 pm Subject: Syncsort Joinkeys |
Thank you. The job is set to go with the following control
JOINKEYS FILE=F1,FIELDS=(1,37,A),SORTED
JOINKEYS FILE=F2,FIELDS=(1,37,A),SORTED ... |
Topic: Syncsort Joinkeys |
PaulPeplinski
Replies: 10
Views: 16039
|
Forum: Utilities Posted: Wed May 23, 2007 4:44 pm Subject: Syncsort Joinkeys |
I have two files with a one to many relationship where JOINKEYS inner join seems to be the ticket - except that two one-byte fields need to be set with constant values indicated with the "?" ... |
Topic: File-matching design |
PaulPeplinski
Replies: 2
Views: 1864
|
Forum: Application Programming Posted: Fri Jul 14, 2006 1:11 pm Subject: File-matching design |
It is difficult to explain. Essentially I need to get fields 1-n from a series of VSAM files to create a new VSAM file to act as a cross reference. I am hesitant to provide specific details so I'll pr ... |
Topic: Deleting a particular record in TSQ |
PaulPeplinski
Replies: 4
Views: 4376
|
Forum: CICS and Middleware Posted: Fri Jul 14, 2006 12:39 pm Subject: Deleting a particular record in TSQ |
deleteq ts syntax - cics/ts 2.3. item is not a parameter.
>> DELETEQ TS QUEUE(name) ><
QNAME(name) SYSID(systemname)
Co ... |
Topic: File-matching design |
PaulPeplinski
Replies: 2
Views: 1864
|
Forum: Application Programming Posted: Wed Jul 12, 2006 3:06 pm Subject: File-matching design |
This may get lengthy but I am trying to create a cross-reference file from the contents of several similar VSAM files. The concept is pretty similar to a VSAM alternate index across multiple files.
... |
Topic: OF/IN Qualifier |
PaulPeplinski
Replies: 6
Views: 6776
|
Forum: Application Programming Posted: Thu May 11, 2006 10:03 am Subject: OF/IN Qualifier |
In this case there is a work-around but the proper syntax is
MOVE SPACES TO WS-A1 OF WS2 (1)
or with reference-modification (assuming a field of two or more bytes)
MOVE SPACES TO WS-A1 OF WS2 ... |
Topic: Unable to connect to MQCONN |
PaulPeplinski
Replies: 6
Views: 7938
|
Forum: CICS and Middleware Posted: Fri Apr 14, 2006 9:20 am Subject: Unable to connect to MQCONN |
Stub for CICS programs is CSQCSTUB.
Also, mqconn is not needed in CICS because the connection is implicit (any CICS can communicate with one and only one QM). If mqconn is used in CICS the conventi ... |
Topic: ASRA Abend when returning from a calling program |
PaulPeplinski
Replies: 2
Views: 2431
|
Forum: Application Programming Posted: Fri Apr 07, 2006 9:03 am Subject: ASRA Abend when returning from a calling program |
The proper format depends on the type of program AMS3094 is. If it is a CICS program (contains EXEC CICS commands) the latter (CALL USING DFHEIBLK DFHCOMMAREA) is correct but the following two paramet ... |
Topic: variables in linkage section |
PaulPeplinski
Replies: 3
Views: 2546
|
Forum: Application Programming Posted: Fri Feb 17, 2006 9:50 am Subject: variables in linkage section |
Linkage section definitions can be used in a program without being in the USING clause in one of the following ways:
Getmain and then (if needed) address the storage. This is seen more in CICS with ... |
|