Answer Posted / srinu
In CICS-DB2 Plan is located RCT table
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the different rules to perform a Search?
Write down the divisions of cobol program?
what are decleratives in cobol?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
what is amode(24), amode(31), rmode(24) and rmode(any)?
Why would you use find and get rather than to obtain?
What are the access modes of START statement?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
Whats the difference between search & search ALL?
What is the difference between comp and comp-3 usage?
What is a SSRANGE and NOSSRANGE?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
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
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.