1,402 questions
-1
votes
1
answer
74
views
Mainframe Sort JCL - transpose the rows to column
I have the following input:
.TY records can vary from 1 to 30 times
I tried with build & PUSH in sort but i couldn't get the expected below output
I need to get it using SORT not COBOL.
The BEGIN ...
0
votes
1
answer
72
views
Handling PCOMM events in Windows Forms application
Is there a way to register/trap the PCOMM events in a Windows Forms application?
I invoke the PCOMM Application using the Interop.AutConnMgrTypeLibrary, on a button click on the form. This all works ...
0
votes
3
answers
106
views
"The import com.ibm.jzos cannot be resolved" when exporting CICS bundle to z/OS UNIX File System
I'm trying to export a CICS bundle to a z/OS Unix file system using IBM Developer for z/OS.
One of the projects in my bundle has a library I'm importing (ibmjzos-2.4.11.3.jar). I added the library to ...
0
votes
0
answers
42
views
zOS/Mainframe Java Shell Script for TrustStore and Certs
I a executing a Mainframe Java program using a shell script and JCL. I have been using the "export" command along with IBM_JAVA_OPTIONS and the JAVA_TOOL_OPTIONS parameters to integrate an ...
0
votes
2
answers
238
views
Bit size of PIC S9(13)v99 in COBOL [closed]
I read somewhere that PIC s9(13)v99 takes 54 bits of storage such that 1 full word(36 bits) and 1 half word(18 bits). Could someone please explain? TIA
0
votes
1
answer
82
views
How to see constraints of table db2
I have a DB2 table and i want to see which columns are declared NOT NULL.
What are the other constraints of all columns of the table (Primary Key) ?
0
votes
0
answers
50
views
IBM HPU 5.2 - Converting EBCDIC Characters to Blanks
We are using the latest available HPU in our shop, version 5.2.
We need to unload some tables that are quite large (hundreds of millions of records) and transfer those files to an IBM Datastage system ...
0
votes
0
answers
27
views
File comparison - File 1 have DOB, File 2 have range for it
My requirement is as follows:
File 1 has records 1,10,ch in date (CCYY-MM-DD) (millions of records)
File 2 has 1 record with data 2006-11-17 2006-12-26 2007-01-16
I need to compare all records of ...
0
votes
1
answer
80
views
what is the impact of the point at the end of instruction COBOL
what is the impact of the point at the end of instruction COBOL when i use SECTION. It seem that the end point is very important.
What is the difference between:
SELECT SECTION.
MOVE xxx TO Bbb
...
0
votes
3
answers
298
views
Is there a way to call a DB2 stored procedure via JCL or SPUFI?
I am trying to execute my stored procedure like this:
CREATE PROCEDURE DWR000A.SELECT_PSID_RIZ(
IN P_CONN INT
,IN P_PLNN INT
) ...
0
votes
2
answers
210
views
Why would a program abend with SQL -927?
We are upgrading our COBOL version from <4.2 to 4.2. I am facing an issue where one job fails because of SQL -927.
The job involves an IMS module and at the end, it calls a DB2 Module.
The last ...
0
votes
0
answers
132
views
Executing DB2 SQL stored procedure via JCL
I am trying to execute SQL db2 stored procedure using DSNTEP2 via JCL.
// SET DATE=241122
/* ...
1
vote
0
answers
40
views
Why is SYSOUT=* in master scheduler JCL valid if JES2 has not started yet?
In the MSI phase of the IPL, the master scheduler is loaded into the first address space. The master scheduler processing is controlled by JCL, and is usually found in the parmlib member MSTJCLXX. ...
0
votes
1
answer
642
views
How do I fix status code 90 when opening a file in COBOL
I am experiencing an issue in my COBOL application.
My application produces an error when opening a file in COBOL.
The file that I am trying to open has a fixed block size and
I want to display the ...
0
votes
1
answer
48
views
Sort group of records by year using dfsort
I am trying to sort group of records by year descending where the key field is the first 10 bytes and the year will be always occuring after '000010YY' as shown below,
I need to sort only the group ...