View previous topic :: View next topic
|
Author |
Message |
ranjitbhingare
New User
Joined: 30 Nov 2005 Posts: 94 Location: PUNE
|
|
|
|
Hi,
I am initiating CESN through my program. Is there anyway to start another transaction automatically after the sign on is complete through CESN ?
Please do let me know.....
Thanks,
Ranjit.... |
|
Back to top |
|
|
senthils
Active User
Joined: 15 Nov 2005 Posts: 117 Location: Chennai, India
|
|
|
|
can you be more specific |
|
Back to top |
|
|
ranjitbhingare
New User
Joined: 30 Nov 2005 Posts: 94 Location: PUNE
|
|
|
|
from my COBOL Program I am initiating TRANSID('CESN').
CESN does invoke logon screen.
So after the logon is successful, is it possible to initiate another transaction automatically from program other than typing the transaction on the screen ? |
|
Back to top |
|
|
Hames
New User
Joined: 03 Oct 2005 Posts: 49
|
|
|
|
Use START(trans_id) command. Then transaction specified in trans_id will be started. |
|
Back to top |
|
|
ranjitbhingare
New User
Joined: 30 Nov 2005 Posts: 94 Location: PUNE
|
|
|
|
I already tried that. After CESn process is complete it just sits on the sign on complete screen.
Is there any other command to start the transaction ? |
|
Back to top |
|
|
Deepa.m
New User
Joined: 28 Apr 2005 Posts: 99
|
|
|
|
try Automatic transaction iniitiation (ATI) therough intrapartition queue(TDQ).for this you have to defien a TDQ and set the trigger level for it to get initiated.
START (trans id ) will also work .. |
|
Back to top |
|
|
prasadvrk
Active User
Joined: 31 May 2006 Posts: 200 Location: Netherlands
|
|
|
|
only piece missing here is you dont need issue TRANSID('CESN'). , directly use START (TransID) |
|
Back to top |
|
|
satya123 Warnings : 1 New User
Joined: 18 Aug 2006 Posts: 57
|
|
|
|
can anybody just tell me
how to register(all the parameter) to define the intra TDQ for ATI????
I am trying with exec ccs start but it is not working ..please guide me giving some sample programs
Please....
satya123 |
|
Back to top |
|
|
satya123 Warnings : 1 New User
Joined: 18 Aug 2006 Posts: 57
|
|
|
|
Hi ,
Is it possible to run CICS transaction theu jcl???
regards
satya123 |
|
Back to top |
|
|
sithvendar
New User
Joined: 30 Aug 2006 Posts: 1 Location: bhubaneshwar
|
|
|
|
u can do that as follows. :
//STEP1 EXEC PGM=CMDM,
// PARM='AOFW CICSAW,CEMT SFI (RPCCHBKK0) OPE'
//*
this invokes the CEMT transaction from jcl,
CICSAW specifies the CICS region in which the transaction is to be invoked.
i got this from one of the groups.....hope this works........ |
|
Back to top |
|
|
satya123 Warnings : 1 New User
Joined: 18 Aug 2006 Posts: 57
|
|
|
|
Hi Sithvendar,
Thanx for the reply.
I tried just writing the same jcl u had given but it is saying NO ACTIVE MODULE FOUND.
Can u bit precise of explaining the code u mentioned.
Regards
Satya123 |
|
Back to top |
|
|
gauravin_in
New User
Joined: 24 Nov 2006 Posts: 2 Location: new delhi
|
|
|
|
1)Can anyone please tell me the complete process to start the sign on cics 'cesn'
2)Also I want the userid entered by the signon screen to be used in my program. How I can do it. |
|
Back to top |
|
|
dineshness
New User
Joined: 25 Dec 2006 Posts: 63 Location: Perambalur
|
|
|
|
1)Can anyone please tell me the complete process to start the sign on cics 'cesn'
The syntax for initiating the CESN Transaction is
CESN Userid = "UserID" PS = "Password" NewPS = "NewPassword"
2)Also I want the userid entered by the signon screen to be used in my program. How I can do it.
You can use EXEC CICS ASSIGN USERID(ws-userid) END-EXEC command. |
|
Back to top |
|
|
|