Questions tagged [cics]

CICS (Customer Information Control System) is a transaction server that runs primarily on IBM mainframe systems under z/OS and z/VSE.

CICS is a transaction manager designed for rapid, high-volume online processing. Historically this processing was mostly interactive (screen-oriented), but since the addition of APIs to handle http(s) and SOAP web services more legacy applications have had new interfaces retrofitted.

Applications are written in a variety of languages including Assembler, COBOL, Java, PHP, PL/I, and Rexx, and use CICS supplied APIs to interact with CICS resources such as files, database connections or to invoke functions such as invoking a web service.

CICS manages the entire transaction such that if for any reason a part of the transaction fails all recoverable changes can be backed out.

208 questions
0
votes
2 answers

Can I create automated tests for an IBM Mainframe application in Java

Is there a way I can create an automated regression test suite in Java for IBM Mainframe applications? Preferably open source. I found some frameworks and tools, but the problem is most are either not in Java or are very expensive to license. Some I…
CodyK
  • 3,426
  • 4
  • 36
  • 52
0
votes
1 answer

problems with CICS Request Node CCSID

i got this problem: i got a message flow developed in WMB7 fix 6, for integrated with CICS. My CICS CCSID is 037. The broker is running in a z/Linux with locale = en_US.UTF-8 and locale charmap = UTF-8. The MQSeries is in 1208. I got problems with…
0
votes
1 answer

CICS Explorer bundle could not be resolved

I am working on a simple Java-DB2 insert program connected to cics region via CICS explorer. I created a plugin for an external jar(com.ibm.db2.jcc), exported the plugin as a deployable plugin and added this in the build path of the program. The…
Sherly
  • 1
  • 2
0
votes
1 answer

AIX + Cobol + CICS = Missing Symbols

This is for anyone with experience compiling Cobol programs using CICS on AIX (7.1). I need to compile a few simple COBOL/CICS programs on AIX. The problem I'm having is on the link. We run cob2 HELLO.cob and the compile is successful but the link…
mister270
  • 366
  • 1
  • 15
0
votes
3 answers

How get one record in DB2 using cics and cobol program

I have a table called room_table room_no room_status room_type -------|-----------|---------- 1001 | A |single 1002 | A |single 1003 | B |single I am using following code in CICS COBOL program but I am getting SQL…
karthi
  • 1,059
  • 3
  • 10
  • 21
0
votes
1 answer

numeric field accepting character in cics map

can anyone suggest me how to do numeric data processing in cics? i have googled it already but still my concepts are not cleared. Can Any one share some link or any information related to the topic. Thanks in advance
0
votes
2 answers

MQ EOL Data conversion

we are sending data trough MQ from a z/OS/CICS system to an AS400. Original encoding of the message is CCSID 500 with a MQSTR Format. The client application is getting the message with the CONVERT option and CCSID 819. Data is almost converted…
lemotdit
  • 448
  • 1
  • 10
  • 21
0
votes
2 answers

CICS EXCI Transaction CSMI abend ASRA

I have a cobol batch program that uses CICS LINK to call a CICS program via EXCI. The CICS program invokes a webs service and parses result into a copybook that is then passed back in the commarea of the LINKAGE SECTION. Everything seems to work…
Justin Cox
  • 326
  • 4
  • 22
0
votes
1 answer

Achieving MQ functionality on z/OS using ActiveMQ

I am trying to validate if the WebsphereMQ feature (MQ Triggering) for remote execution of commands on z/OS can be achieved using ActiveMQ. Broadly, I think this will require custom java coding to leverage new frameworks/libs like JCICS (I think…
ZeroGraviti
  • 1,047
  • 2
  • 12
  • 28
0
votes
2 answers

Mule ESB z/OS integration

Needed some information on mainframe integration from Mule ESB Enterprise v 3.4 with z/OS. We don't have CICS Transaction Gateway setup and are using CICS Transaction Server v 3.2. Please let me know if there is an out-of-the-box way to achieve this…
ZeroGraviti
  • 1,047
  • 2
  • 12
  • 28
0
votes
1 answer

WSO2 ESB connectivity CICS Transaction Server

Need to know if WSO2 ESB can integrate with CICS Transaction Server v 3.2 on a z/OS mainframe. TIA.
ZeroGraviti
  • 1,047
  • 2
  • 12
  • 28
0
votes
2 answers

JVM unsupported version in CICS

I am getting The JVM specified is unsupported error while updating JVM path in IBM CICS. Iam trying to update current CICS jvm path into c:\Program Files\IBM\SDP\runtimes\base_v7\java\jre\bin"\java.exe path. command I used: ctgjava -s=c:\Program…
0
votes
3 answers

How to check the status of a CICS region through a JCL/Shell script(unix box)

I want to check the status of a Mainframe CICS region whether it is active or inactive by using a JCL or it is even better if one can suggest me a way to check the status of the CICS region through a shell script. This script/JCL will be used to…
ghosts
  • 177
  • 2
  • 15
0
votes
2 answers

JCL equivalent of CEMT NEWCOPY

I am looking for the JCL equivalent of NEWCOPY method in CEMT/CICS: CEMT SET PROG(xxxx) NEWCOPY Any help would be appreciated.
sangupta
  • 2,396
  • 3
  • 23
  • 37
0
votes
1 answer

Unable to place the cursor position dynamically in cics

I have a map which has only one input field where the user will choose the option from 3 given options. I haven't used IC in the attribute definition of the field in map. What i've done is before sending the map, I used this statement: MOVE -1 TO…
Pramod
  • 1,411
  • 11
  • 35
  • 66
1 2 3
13
14