how to solve u4038 abbend?........

Answer Posted / vinay sonar

I got this error while KSDS random read using file handling
concept.

You get U4038 when you ACCEPT any variable in COBOL but you
are not passing any instreame data in JCL.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you understand by the term job time – out and how can you overcome that?

608


How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?

673


What is the format of comment statement?

674


Brief description of inline procedure of jcl.

687


Explain dfsort utility?

676






How can unused space allocation be returned to the system when a dataset is closed?

813


I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?

704


what is the compile process of cobol program expalin with code

2006


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?

1812


what is the difference between JES3 and JES2?

686


Must tape dataset definitions include vol=ser specifications?

987


Name a few IBM utility programs, and explain its function.

4442


Explain the function of the dd dcb keyword?

706


What is the purpose of disp parameter?

647


WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

857