If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.



If my program receives input feed from program in other system.. if the receiving field size is less..

Answer / ajay digule

If the receiving field size is less than there will be truncation of the values being passed. There will be no abend message.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

Which Search verb is equivalent to PERFORM…VARYING?

0 Answers  


can i use multiple when statements in search & search all ? justify ur answer?

2 Answers  


db2 variable decimal(15,2) what is the equalent size of cobol variable

2 Answers   Syntel,


How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.

2 Answers  


Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.

3 Answers  






how you will define variables length in cobol.

3 Answers   Temenos,


How can I tell if a module is being called DYNAMICALLY or STATICALLY?

3 Answers   CTS,


How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.

6 Answers   Accenture,


If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?

5 Answers   TCS,


EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?

0 Answers   Accenture,


consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size

1 Answers   TCS,


How to traceback if I am getting SOC7 or SOC4 abend? List down the steps

0 Answers  


Categories