How can we initiate a transaction from batch?

Answers were Sorted based on User's Feedback



How can we initiate a transaction from batch?..

Answer / maruthi

1. Your batch program should be a cobol-cics program witout
a map.

2. This program will initiate the transaction using the
START Command

Is This Answer Correct ?    5 Yes 0 No

How can we initiate a transaction from batch?..

Answer / kapil sharma

We can initiate a transaction from batch in one more way...
We can write the triggers in queue which is attached to a transaction and must be a trigger based queue. After writing the triggers into queue using batch program the transaction attached to that queue will be triggered.

Is This Answer Correct ?    4 Yes 1 No

How can we initiate a transaction from batch?..

Answer / mohamed farook

sample code to initiate Cics module from jcl

//PS170 EXEC PGM=IPCPBTCH,COND=
(4,LT,PS150)
//IPCPCDS DD
DSN=SYS3.IPCPR1V0.COMMAND.CICPS1PR.DATASET,
//
DISP=SHR
//AUDIT DD
SYSOUT=*
//SYSOUT DD
SYSOUT=*
//SYSPRINT DD
SYSOUT=*
//SYSUDUMP DD
SYSOUT=Y
//SYSIN DD DSN=SFM00000.DPP.PROD.SYSIN
(FYSIN1),
//
DISP=SHR



SFM00000.DPP.PROD.SYSIN(FYSIN1) has

CICS CC ONLY=AO31
INIT KC AX73



Here AO31 is the region were you want the cics module to be
initiated

AX73 is transaction


Farook

Is This Answer Correct ?    2 Yes 2 No

How can we initiate a transaction from batch?..

Answer / rajesh

Using Spool open, spool write & spool close ..this can needs
SPOOL=YES.

Is This Answer Correct ?    0 Yes 0 No

How can we initiate a transaction from batch?..

Answer / lenin

However the programs having XCTL and LINK called by trans
id right?.
I dont think that we can call from batch. Can you please
anyone give the answer if can,as i am also eager to know
that.

Is This Answer Correct ?    0 Yes 2 No

How can we initiate a transaction from batch?..

Answer / mainframe.rahulz

Transaction is a concept in which each program is identified
by a TRAN-ID in CICS.

I think we have a concept called XCTL and LINK where we can
call Transaction from our Batch.

Correct Me if i am Wrong.

Is This Answer Correct ?    2 Yes 16 No

Post New Answer

More CICS Interview Questions

What are the recoverable cics resources?

0 Answers  


If you use the OPTIMIZE compiler option the size of the program can be reduced by 5 to 10%(True or False)

2 Answers  


What is the EIB parameter and the CICS command used to implement Pseudo-Conversational technique using single PCT ? Single PPT entry?

1 Answers   IBM,


How errors are handled in CICS programs?

0 Answers  


how can you prevent more than one user from accessing the same transient data queue?

0 Answers   IBM,






What is ATI? What kind of TDQ can be used?

3 Answers   IBM,


What happens if i move +1 (instead of -1) to field+L in CICS? Will it show compile time error?

6 Answers   CTS,


Define TCT.

0 Answers  


What are the attribute values of Skipper and Stopper fields?

1 Answers  


Explain the difference between and exec cics xctl and exec cics start command?

0 Answers  


When you compile a CICS program, the (pre)compiler puts an extra chunk of code. Where does it get stored

1 Answers  


Can you access QSAM (seq ) files from CICS ?

2 Answers   IBM,


Categories