Tagged Questions

Job Control Language (JCL) is a scripting language used on IBM mainframe operating systems to instruct the system on how to run a batch job or start a subsystem.

learn more… | top users | synonyms

7
votes
5answers
2k views

Learning mainframe & JCL with Java/OOP/SQL background

I've been coding and managing Java & ASP.Net applications & servers for my entire career. Now I'm being directed towards involvement in mainframes, ie z/OS & JCL, and I'm finding it ...
3
votes
2answers
64 views

File tailoring without ISPF

I'm currently attempting to write a simpler external interface to a mainframe ISPF panel, however it makes use of ISPF file tailoring to modify JCL scripts before execution, and ISPF services ...
3
votes
3answers
158 views

Can we add symbolic parameters in PDS members used in cataloged procedures?

I have JCL, which is executing one catalog procedure. In catalog procesdure one COBOL-DB2 pgm is being executed. Below is my JCL //A JOB (@),'CALL DB2',NOTIFY=&SYSUID //JS010 EXEC TESTPROC ...
3
votes
1answer
234 views

Pass JCL symbol to instream

I'm trying to create and delete a dataset with a JCL symbol in the dataset name this way: // SET DATE=20110809 //* DELETE DATASET //DEL01 EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //SYSIN DD * ...
3
votes
2answers
2k views

JCL file to create PDS and member

How can I write a JCL file that will create a PDS and a member within that same PDS?
3
votes
1answer
831 views

What is DPRTY in mainframe JCL?

When we are submitted a job, following steps are executed sequentially. Then what is the importance of DPRTY?
2
votes
1answer
167 views

How to correctly declare DCB in JCL/assembler for QSAM put-locate

I'm trying to write a program that will write some data to a temporary dataset using the 370/assembler and QSAM. I get a soc01 when executing the put. My DCB declaration in the assembler code looks ...
2
votes
2answers
224 views

JCL job depency without scheduler

I'm trying to implement a JCL, in a JES2 environment, that launches a set of jobs with dependencies in it, for example: JOB_A -> JOB_B ) JOB_C -> JOB_D ) -> JOB_E In other words, ...
2
votes
3answers
425 views

Read a flat file. Use COBOL to retrieve specific rows

I have a flat file like this: 1|sal|manager|2007/01/01|2007/12/31 2|sal|manager|2008/01/01|2008/12/31 3|per|abc|manager 4|sal|manager|2007/01/01|2007/12/31 5|per|xyz|ceo I have to read the file ...
2
votes
2answers
191 views

PowerShell raw FTP

I am looking to use FTP to write a mainframe jobstream. To do that, I can connect to the mainframe via FTP and run these commands: QUOTE TYPE E QUOTE SITE FILETYPE=JES PUT myjob.jcl So, how would I ...
2
votes
1answer
602 views

How to write DB2 SELECT statement in unload job for delimiters

I have been over this... seems silly but couldnt figure out! I wanna UNLOAD a table but with a delimiter '|' in between the fields. Here is the JCL used to unload the table: //JS020 EXEC ...
2
votes
3answers
2k views

jcl sort to divide Mainframe Dataset

I am trying to divide MF PS into several datasets. e.g. If I have a Dataset containg 600 recs, I want to divide this into 6 files with 100 records each. Is it possible to do this using JCL sort?
2
votes
4answers
4k views

Explanation about TSO ISPF commands and their use in MAINFRAMES!

Please give me some links or materials covering the explanation of TSO ISPF commands in mainframes and their use.
2
votes
1answer
564 views

COBOL: SYSIN JCL for compiling source from PDS

I'm just starting COBOL, and ran into this with JCL... How do I compile a basic cobol program from my PDS, I know through instream it would just be //SYSIN DD * code code code /* I tried something ...
2
votes
2answers
1k views

How to submit JCL on IBM zOS through Java web app?

Can someone tell me the best way to run a piece of JCL on IBM zOS from a Java web app on a different server (Windows). I also need get a response code back from the job. The 2 options at the moment ...
2
votes
5answers
1k views

IEBGENER Help

Ok, so I am having some trouble figuring out how to get IEBGENER working in the way that I want it to. I should preface all this by saying that I am running IEBGENER in a z/OS environment on an ...
2
votes
2answers
3k views

Symbolic JCL Confusion

I am a bit confused on how to create a symbolic variable in JCL for an assignment I am doing in my COBOL class. For example, I am supposed to "Specify a symbolic parameter for the PARM option and ...
1
vote
1answer
117 views

How to get the unload result in Packed decimal format if the table column is in INTEGER formmat in the DB2 table?

I have a one query explaind below...., 1.My DB2 table column is in INTEGER format (it has the date value in Julian date format - YYYYDDD) 2. After unload this date into a flat file, the result is in ...
1
vote
1answer
199 views

HOw to add 1 day to the given input date (format: YYYY-MM-DD) using JCL Syncsort?

I want to add 1 day to the given input date. The input date is in YYYY-MM-DD format. Can anybady please let me know how can I do this using Syncsort? Ex: Input date: 2011-10-31 (Format: ...
1
vote
1answer
464 views

Calling CICS program from JCL batch

Is it possible to call a CICS program from JCL batch? If yes how? If no why not?
1
vote
1answer
664 views

How can I auto Indent for Cobol and JCl using Notepad ++

Any one Please tell me how to autoindent my cobol and JCL codes. It will be easy for me to write programs if i use those intendationi n notepad++. Please reply me.
1
vote
3answers
3k views

How can I use SYNCSORT to format a Packed Decimal field with a specifc sign value?

I want to use SYNCSORT to force all Packed Decimal fields to a negative sign value. The critical requirement is the 2nd nibble must be Hex 'D'. I have a method that works but it seems much too ...
1
vote
2answers
862 views

JCL for copying certain members from one PDS to another

I am trying to copy some members from one PDS to another. Suppose I have 500 members in one PDS. I am trying to move the first 100 to the second PDS, the next 100 to the third PDS, and so on. The ...
1
vote
1answer
1k views

Reading records from a file

I have a file having some number of records and I want to copy only first and last 10 records into another file. Can anybody tell how to write jcl, using sort, icetool, etc.
1
vote
3answers
294 views

invoking JCL from java

I have been working in java for the past 4 years. I would like to inform that my knowledge in mainframes system is a BIG 0 and am looking for a way to invoke a JCL scrip from a java class. Can ...
1
vote
1answer
2k views

Where can i find COBOL MAINFRAME JCL CICS Video Tutorials?

Please give me the links where I can find video tutorials for COBOL MAINFRAME JCL CICS Video Tutorials. Please help.
1
vote
3answers
3k views

How to pass arguments to REXX program through JCL

Can we pass arguments to a REXX program from JCL? I suppose, JCL PARM can be used as we use for passing arguments to COBOL programs.. Do put your ideas here...
1
vote
5answers
2k views

Determine duplicate record for duplicate and non-duplicate records

I have a files containing both duplicate and non-duplicate records. The file is already sorted by a key. I want to determine those records that are duplicate and records that are non-duplicate. If ...
0
votes
2answers
82 views

Merge flat files

I am trying to create a JCL for merging flat files using IEBGENER. The number of input files is not constant. Can we do it using IEBGENER?
0
votes
2answers
187 views

How to get the records count using Syncsort?

MY requirement is to get same record counts using JCL - Syncsort. MY Input File contains the packed decimal values in 58-60 position. I need to get the record count when the input in between 01 and ...
0
votes
2answers
110 views

Proc parameters

We are having some proc steps which are using control cards that contain cics region names. Procs are present in Endevor.Previously we had endevor macros which used to change the region names as per ...
0
votes
1answer
263 views

How to get the Matching and Non-matching records from two input files in one step using SYNCSORT?

I have a requirement like below. -> I have 2 input files FILE1 and FILE2. -> Write the matching records into a FILE3. -> Write the Non matching records from FILE1 into FILE4. -> Write the Non ...
0
votes
1answer
51 views

How to get the difference between input Julian date(PD format) and Current Julian date (PD format)?

I have an another requirement as below. In my Input file, I have Packed decimal Julian date[YYYYDDD format] in 23rd position (position 23, length 4). If [my the input Julian date -Current Julian ...
0
votes
1answer
106 views

Compare Packed decimal Julian date with (Packed decimal Current Julian date-7days) using JCL- SYNCSORT?

I have a requirement as below. In my Input file, I have Packed decimal Julian date[YYYYDDD format] in 23rd position (position 23, length 4). If my the input Julian date is less than (Current ...
0
votes
2answers
325 views

VSAM Status code 04

I am running one COBOL pgm which is reading one VSAM file. Below is ithe input output section in my pgm. FILE-CONTROL. SELECT INPUT-FILE ...
0
votes
1answer
251 views

JCL for running COBOL program calling subprogram

I have one COBOL pgm A which is calling another COBOL pgm B. In pgm B I need one file.How can I write JCL so that I would be able to access this file in pgm B? I have written select clause and FD ...
0
votes
1answer
606 views

sorting and splitting in a DFSORT together?

Input file Layout: 01 to 10 - 10 Digit Acct# 53 to 01 - An indicator with values 'Y' or 'N' 71 to 10 - Time stamp (Rest of the fields are insignificant for this sort) While sorting the input file by ...
0
votes
1answer
199 views

How to filter out the data by date using DFSORT

I have a flat file with some useful data along with timestamp on each record. Inorder to create a report, I need data of last month ONLY for my further analysis. With out using a cobol source code, ...
0
votes
3answers
73 views

What is 'NAILDUMPS''?

I encountered a new term called 'NAILDUMPS' when I analysed a flowchart explaining a series of jcls.In some steps of that flowchart it is mentioned as"this file is naildumped" .Can anyone explain ...
0
votes
1answer
93 views

How to use “sort” to move blank lines to the bottom?

I have 9787 records of which the first 17 lines are blank. I want to move those 17 lines to the bottom of the record. How can I do that?
0
votes
1answer
133 views

JCL exclusive access to data set error

According to MVS JCL Reference guide before the job start it requests the exclusive control of a data set: DISP and ENQ: Before starting the first step of a job, the initiator requests control of all ...
0
votes
1answer
70 views

SQLSTATE 7003 while unloading table in JCL

I have a JCL with the following format Proc Library //JS020 EXEC PGM=IKJEFT01, // DYNAMNBR=20 //* //EXTRACT DD DSN=PATH.EXTRACT, ...
0
votes
2answers
152 views

Got a SQLCODE = -991

After the sub of the exec JCL, i've got the following error : SQLCODE = -991 Error = ALL ATTACH WAS UNABLE TO ESTABLISH AN IMPLICIT CONNECT OR OPEN TO DB2 This error is triggered when i call a ...
0
votes
0answers
404 views

Please guide me in IBM mainframes COBOL,JCL,DB2,VSAM,CICS [closed]

Please help me in finding out easy understanding materials on IBM MainFrames . Tutorial Cook Book Case Study Hands on exercises video tutorials screen shots on the mainframes COBOL,JCL,DB2,VSAM,CICS ...
0
votes
3answers
306 views

Mainframe Dataset compare

I am having 2 Mainframe datasets. e.g. one Source and second is required. I want to select only required record(present in required file) from source file and write it to expected file.Is it possible ...
0
votes
1answer
1k views

JOINKEYS to combine two files

I would like to explain my scenario using sample code below, Two files need to be joined by means of acct# using JOINKEYS but in file1 acct# exists at position:33 but in file2 acct# exists ...
0
votes
1answer
295 views

Do we have any code retrofit tools inbuilt for mainframe technologies like COBOL, JCL etc?

I hope what does retrofitting of code mean? Since you checked-out the code from prod, if any changes have been deployed in prod, then retrofitting of a code will add those changes to your ...
0
votes
1answer
2k views

can we compare time fields in SORT card of JCL

Suppose I have 12 position of a record holding time field of 8 bytes. Can I compare it with current timestamp? Can I do arithmetic operations on that filed like adding an hour or subtracting few ...
0
votes
1answer
1k views

append records to an existing file

If I want to append records to an existing file what DISP parameters do I need to use?
0
votes
3answers
999 views

How to abend job intentionally

Is it possible to abend your job intentionally through COBOL program. suppose I have an Input file having Header,Detail and Trailer records. I will write a COBOL pgm which reads this file.If no Detail ...

1 2