View previous topic :: View next topic |
Author |
Message |
Don98 Beginner
Joined: 09 Jul 2004 Posts: 1 Topics: 1 Location: Tampa, FL
|
Posted: Fri Jul 09, 2004 3:26 pm Post subject: Automatic execution of a Tran-id at Sign-on |
|
|
After signing onto a CICS region, the application users must enter a transaction id to get to the main menu for my application. Is it possible to automatically initiate a trans-id after the user has completed their sign-on?
Thanks |
|
Back to top |
|
|
Bithead Advanced
Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Fri Jul 09, 2004 4:34 pm Post subject: |
|
|
Can your session manager run an ACL script? |
|
Back to top |
|
|
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Mon Jul 12, 2004 9:17 am Post subject: |
|
|
The GMTRAN CICS system initialization parameter (described in the 'CICS system definition guide') indicates what transaction to run when the user logs on.
What we do is point this to our own signon transaction which prompts the user for id,pwsd etc., uses this to do an EXEC CICS SIGNON and then passes control to the initial application program (via EXEC CICS XCTL) or the inital application transaction (via EXEC CICS RETURN TRANSACTION('xxxx') IMMEDIATE). |
|
Back to top |
|
|
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Mon Jul 12, 2004 9:20 am Post subject: |
|
|
Just to add that it really is a good idea to write your own signon+menu transfer program since you can do other things like tidy up TSQs, issue broadcast messages, whatever. |
|
Back to top |
|
|
|
|