IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Invoke a transaction between CICS regions


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
rsm_deepak

New User


Joined: 06 Apr 2005
Posts: 30
Location: visakhapatnam

PostPosted: Mon Aug 27, 2007 12:01 pm
Reply with quote

Hi all,

My requirement is

There are 40 CICS regions which are invoking same transaction for a specific reqiurement.

So every time based on the region we are going into CICS region and trigger the trans id.

Now we want to automate it for a tool. (Since the front end(dotNet) users can't trigger the trans id in mainframes).

So my problem is to Invoke same transaction in different regions(based on the requirement) through the tool where the cost should be less for the client.
Back to top
View user's profile Send private message
Earl

Active User


Joined: 17 Jun 2007
Posts: 148
Location: oklahoma

PostPosted: Thu Aug 30, 2007 5:05 am
Reply with quote

too confusing, can you explain a little more?

.net users can and do run transactions on the mainframe.


are you talking about running a transaction in 1 region that auto starts
transactions in 40 other regions ?
Back to top
View user's profile Send private message
rsm_deepak

New User


Joined: 06 Apr 2005
Posts: 30
Location: visakhapatnam

PostPosted: Thu Aug 30, 2007 3:41 pm
Reply with quote

here I just want
running a transaction that auto start another transaction ABCD based on following condition

IF CONDITION 1
Trigger ABCD in CICS Region 1

IF CONDITION 2
Trigger ABCD in CICS Region 2

IF CONDITION 3
Trigger ABCD in CICS Region 3
-----
-----
IF CONDITION 40
Trigger ABCD in CICS Region 40
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Aug 30, 2007 4:44 pm
Reply with quote

A google search on "cics load balancing" or even better "cicsplex load balancing" will give You lots of pointers to documents concerning cics/network directions useful for implementing network balancing ( TCP/IP ) and/or application balancing between different cics/cicplex regions.

regards

e.s
Back to top
View user's profile Send private message
Earl

Active User


Joined: 17 Jun 2007
Posts: 148
Location: oklahoma

PostPosted: Thu Aug 30, 2007 8:08 pm
Reply with quote

Try

if condition1
exec cics start transid('ABCD') SYSID ('R001') << region 1 sysid

else
if condition2
exec cics start transid('ABCD') SYSID ('R002') << region 2 sysid

...
...
...
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts How to identify the transaction categ... IMS DB/DC 3
Search our Forums:

Back to Top