01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
L&T,
6 11243I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
RBS,
5 12925I have the requirement to compare the two files and pick up the matching records. File 1. file2 23 32 32 13 34 15 35 36 36 35 43 Get the matching records from this 2 files to out file. how you will do this in cobol program?
15 10040701 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
ACS,
15 21659How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
2 16760If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
UST,
8 12135Sending data is aplhabetic size 7 (value 3000), I wantated this value to be stored in database, which is defined as s9(7)v9(2)comp-3.
2 6228i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
12 19004
what is s000 u4087 error? please give the all error codes in cobol,jcl.
What is the LINKAGE SECTION used in COBOL?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
how to access the file from prodution from changeman tool and to submit a file to production
Explain what you understand by passing by value.
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
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
State the various causes of s0c1, s0c5 and s0c7.
Define cobol?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
How to remove 2 duplicate records and copy only one using job control language?
how do you reference the printer file formats from cobol programs