Please give me the coding for converting VB to FB and FB to VB
Answer Posted / sr
//STEP1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=SDS.OUTPUT.FBVB,DISP=SHR
//OUT1 DD DSN=SDS.OUTPUT.VBFB,
// DISP=(NEW,CATLG,DELETE),UNIT=SYSDA,
// SPACE=(TRK,(5,5)),
// DCB=(RECFM=FB,LRECL=80)
//SYSIN DD *
OPTION COPY
OUTFILE FNAMES=OUT1,VTOF,OUTREC=(5,80)
/*
SDS.OUTPUT.FBVB is a VB file of Record length=
84
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
List the different jcl statements that are not permitted in the procedures?
what JCL Procedures?
how JCL works?
Explain the function of dd disp parameter?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
How dummy is used in jcl?
What is timing concept in mainframe?
What is the motivation behind coding class parameter in job statement?
Is automatic restart possible in jcl? If yes, how?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
how do you access an uncataloged dataset in a jcl?
what is the purpose of coding notify parameter in job statement?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
What is the difference between the positional and keyword parameters? Give examples.