How can u pass the control from one prog to another in CICS?
Answers were Sorted based on User's Feedback
Answer / qasim@omtech
1.By using xctl and link
2.You can use CALL statement also
3.By using "return(transaction-name)" syntax also
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sriharsga s r
To pass control from One program to other program
Use Link, XCTL and CALL
If You are using Link or XCTL in calling program, then use
Return command in the Called program to send control back
to Calling program.
If You are using CALL statement in Calling program,then use
GOBACK in called program to send control back to Calling
program.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / y@$w@nth
The following are the commands to pass control from one
program to another program
XCTL(to pass control to the same level program and won't
expects the return of control )
LINK(to pass control to the one level to next lower level
and expects the control to return back)
RETURN( Use this in the called program to return control to
the called program When it is called through XCTL or LINK )
CALL
GOBACK(use this in the called program to return control to
the calling program When the it is called through CALL
statement)
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / tony prabu
Ya it's right usin not simply return but by specfying the
transaction to be executed to be mentioned thus the program
that run that transaction runs.
ex:
return(transaction-name)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / murali pithani
We can pass control to the program by starting a
transaction in the source program.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to execute a cics program from a paticular date and time .or specified date and time.
Is it possible to delete Symbolic Map? What is the impactness if we delete symbolic map?
What is the difference between SEND MAP DATAONLY and SEND MAP MAPONLY ?
How many maps are create in a single mapset?
Do you receive the attribute byte in the symbolic map?
Define the term function request shipping?
What is a deadlock?
Mention the option used in the CICS READ command to gain accessibility directly to the file I/O area.
if i am having a cics,vsam and db2 programs with each functions and i want that each function on screen?
What is the term bms in cics?
is it possible to create TDQ's and TSQ's dynamically,How
What is dynamic transaction backout?