how can we establish a link between two maps using a cobol
application program....lets say how can u use 'back' in a
map ..to come back on previous .

Answers were Sorted based on User's Feedback



how can we establish a link between two maps using a cobol application program....lets say how can..

Answer / kumar

linking of two maps is nothing but transfering of control.
And this can be achieved by using LINK,XCTL commands.

Is This Answer Correct ?    24 Yes 0 No

how can we establish a link between two maps using a cobol application program....lets say how can..

Answer / sanju

LINK and XCTL

Is This Answer Correct ?    7 Yes 4 No

how can we establish a link between two maps using a cobol application program....lets say how can..

Answer / madhuri tungal

as kumar said... linking of two maps is nothing but
transfering of control and that can be achieved by
LINK (control will be returned back to main program)
or
XCTL (control wil not be returned back to main program).

to come back to main program or transfer control to any
program use following command:

exec cics return(transaction-id) end-exec.

above command will transfer the control to program
associated with transaction-id.

Is This Answer Correct ?    5 Yes 3 No

how can we establish a link between two maps using a cobol application program....lets say how can..

Answer / anna

you can not do return with transid from sub prgm to main
prgm i.e from link to main prgm you do not have area to
save trans id

Is This Answer Correct ?    1 Yes 1 No

how can we establish a link between two maps using a cobol application program....lets say how can..

Answer / arun

we can establish a link between two maps in 3 ways .
LINK (control will be returned back to main program) and
XCTL (control wil not be returned back to main program).
But for the second one we have to give the return statement
with the main programs transaction-id. otherwise the control
wil not return back to the main map.

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More CICS Interview Questions

List all the CICS tables and explain their contents.

3 Answers   IBM,


Define floating maps with illustration?

0 Answers  


Explain how many conditions can you include in a single handle condition command?

0 Answers  


Specify the requirements for automatic task initiation?

0 Answers  


What is the difference between Re-Entrant and Quasi re entrant program?? By looking at the program how can you tell if its re- entrant or not??

1 Answers   IBM,






Name the command used for terminating a browse operation?

0 Answers  


Name the macros used to define the following: MAP MAPSET FIELD

2 Answers  


What will happen, if an out-of-range or negative value is specified in the LENGTH option of the SEND

1 Answers  


What is DEQ?

0 Answers  


Which of the following are recoverable CICS resources?

1 Answers   IBM,


What are the CICS tables? How to traverse from one screen (program) to another on CICS?

1 Answers  


Name the three ways available for a program to position the cursor on the screen?

0 Answers  


Categories