Can a PS file be read in reverse order?If so,how
Answer Posted / ravi krian
yes,using arrays we can read ps file in reverse order
Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What is the function of job statement in jcl?
Explain how can the attributes of one sms dataset be copied to another dataset?
Can I send output of job to my remote device careerride123?
when does a dataset go uncataloged?
what is the compile process of cobol program expalin with code
what happens in execution stage in job processing?
What is jcl in mainframe?
how do you code a null statement?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
which parameter is use to declare the name of dataset in dd statement?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
what is the use of JCL?
How does jcl act on code(if you take a cobol program)?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375