What is LENGTH in COBOL II?
Answers were Sorted based on User's Feedback
Answer / satheesh
LENGTH acts like a special register to tell the length of a
group or an elementary item.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / satish
length is inistric function it tell's how bytes occupy by
dataitem
| Is This Answer Correct ? | 0 Yes | 0 No |
how to crack cts interview apps? NOVEMBER 21 2010
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you
I have a file it contain 10 records.i got abend at 8th record because of soc7.how do you know that perticular record got abend?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
What is COMP-1? COMP-2?
What is the difference between working storage copybook and linkage section copybook?
Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.
In COBOL programming, what is PERFORM? What is VARYING?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
What is the difference between Perform para and perform asaection in cobol?
if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error
I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?