Can we call a CICS program from a batch program or
viceversa?If so, how?
Answers were Sorted based on User's Feedback
Answer / guest
yes,we can call cics using batch program..by using executable
statement i think...if any other answer let me tel
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / kingmanish
For calling a COBOL program from CICS we can use TDQ.
For example if want a certain program to run once a
threshold of say 100 records is reached in order to save
the data or better performance.
then we can achieve this by using TDQ is CICS.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of EVALUATE statement?
How To move a value to an array using move verb?
what is a load module ?
what is the coding difference between COBOL and CICS.
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
what is the use of comp2 ? where can we use it with example ?
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
what is search and searchall?what is the diffrence between them?give an best example?
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
Can we use icetool in cobol program?