We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
1 6495what are difference organizations in cobol and access mode in cobol? can you expalin what organization means while declaring for ksds,esds,rrds?
HCL,
1 9308WORKING-STORAGE SECTION. 01 A PIC X(3) VALUE 'ABC' 01 B PIC 9(3). PROCEDURE DIVISION. MOVE A TO B. STOP RUN. OUTPUT IS: AB3 WHY AND HOW THIS IS HAPPENING.
4 8488I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
4 12060
i need a small 3d program using inline and outline.
What is static and dynamic call in cobol?
Differentiate between structured cobol programming and object-oriented cobol programming.
What is the LINKAGE SECTION used in COBOL?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
how do you reference the variable unblock file formats from cobol programs
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What are the different open modes available in cobol?
Mention the guidelines to write a structured cobol program?
Give some examples of command terminators?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
What is report-item in COBOL?
) what is the difference between AID and HANDLE AID?
how to move the records from file to array table. give with code example