View previous topic :: View next topic |
Author |
Message |
grsatty Beginner
Joined: 03 Aug 2004 Posts: 1 Topics: 1
|
Posted: Wed Aug 04, 2004 12:29 am Post subject: CICS Link usage |
|
|
If i pass the control from program ( a ) to program ( b ) thru link, and which inturn gives the control to the terminal ( t ) through a transaction (related with b). it is saying invreq ?
if u can help me out in this it will be great
--- thanks guys---- _________________ Sathish |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Wed Aug 04, 2004 8:13 am Post subject: |
|
|
You don't appear to want to return to program 'a' so you should probably XCTL from 'a' to 'b' instead of linking. Then you will stay at the top logical level and will be able to do RETURN TRANSID without getting INVREQ. If you LINK from 'a' to 'b' you will be one logical level down and only able to do RETURN without transid (to take you back to 'b') |
|
Back to top |
|
|
|
|