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


Please Help Members By Posting Answers For Below Questions

What is the function of job statement in jcl?

724


Explain how can the attributes of one sms dataset be copied to another dataset?

822


Can I send output of job to my remote device careerride123?

761


when does a dataset go uncataloged?

935


what is the compile process of cobol program expalin with code

2117






what happens in execution stage in job processing?

729


What is jcl in mainframe?

833


how do you code a null statement?

878


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

2091


which parameter is use to declare the name of dataset in dd statement?

849


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?

1892


What is jcl in mainframe, and how many types of jcl statements are there for a job?

731


what is the use of JCL?

762


How does jcl act on code(if you take a cobol program)?

814


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

1152