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 |
can any one help -s806
What is the file organization clause ?
How arrays can be defined in COBOL?
How do you do in-line PERFORM?
What is inspect in cobol ?
How do u initialize an array?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
What is the maximum length of a field you can define using COMP-3?
4 Answers Complex System, Infosys,
how can you identify wheather the program is using search or search all in the cobol program?
01 WS-NAME PIC X(10) OCCURES 2. by this we can get ws-name 2 times. My qustion is how can we access the second name
how will u find out 3rd week's 2nd day using occurs ?
What guidelines should be followed to write a structured cobol prgm?