how can i see junk values in dclgen or in hostvariable of comp ?
No Answer is Posted For this Question
Be the First to Post Answer
how to fetch the record before the last record in a cobol file( its a huge file and if the key field is not known)
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
Explain Restart Logic in Cobol?
i need a program by giving input as a abcd in any randem order but i need a output as 1234 related to abcd. i.e,. a for 1,b=2,c.....etc..
can we use COPY statement in w-s section? how?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
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 a report item?
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
what is qualification on occurs clause?