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
1 answer

How to deploy a CICS application in a web server

I have developed my first basic cics application which is an examination system. Now I want this to be available for everyone. I don't have any idea whether this is possible or not. Can anyone guide me or provide any links or books for deploying in…
Pramod
  • 1,411
  • 11
  • 35
  • 66
0
votes
3 answers

Numeric field accepting characters in cics map

I have 4 fields in my map which are 9(6),9(3),9(3),9(3). I wrote validation code like this: IF ROLLNUM IS NOT NUMERIC MOVE DFHRED TO ROLLNUMC MOVE 'INVALID DATA' TO RESMSGO MOVE…
Pramod
  • 1,411
  • 11
  • 35
  • 66
-1
votes
1 answer

Cobol - CICS DB2 - commits only last insert

There are two pgms COBOL CICS (Main PGM) which reads mq queue, triggers transaction and send response back. Cobol CICS DB2 (Sub PGM) which logs mq details to DB2 table which made in main PGM. The problem is when at the end of uow, only last…
CicsAdm
  • 1
  • 1
-1
votes
2 answers

How to use an external variable in linkage section in COBOL and pass values from it into a new module and write into my new output file

Could someone please tell me why a variable is declared as "External" in a module and how to use that in other modules through Linkage section and how to pass them into new fields so I can write it to a new file.
-1
votes
2 answers

How to make the Compute Result from COBOL cut based on the picture clause that I set

I'm trying to display a result of computation like add, sub, mul, and div. My problem is that I set the compute result but it didn't cut. Let's say if I say the number 1 x 1 is 99999x99999, it will produce 10 digits so I must use PIC 9(10) in data…
trytocode
  • 393
  • 4
  • 22
-1
votes
2 answers

Mule ESB and Mainframe integration possible solutions

i am trying to connect mainframe from MuleESB we have CICS regions but i am not sure how useful CICS regions to connect and do we need to connect MQ to intgrate with Mainframe. is thr any way with out connecting MQ can we connect mainframes
Chandra
  • 1
  • 3
-1
votes
1 answer

ANSI C : test return from calloc API - differ from windows and ibm cics

The ANSI C code below returns a valid pointer when compiled with Viasual Studio 2010 (Compile as C Code (/TC)) : #include #include #include void main() { void * p = NULL; int i=0; p = calloc(0, 100…
lsalamon
  • 7,998
  • 6
  • 50
  • 63
-1
votes
5 answers

How to automatically update time in cics

I have two questions first is the main one. 1. I was able to display date in a cics map but what i need is, i want it to be ticking i.e., it should be display everysecond updated. 2. I have a COBOL-DB2 program which automatically inserts the data…
Pramod
  • 1,411
  • 11
  • 35
  • 66
-2
votes
1 answer

is it a good idea to use CICS transaction gateway in open source?

for know the CICS transaction gateway is used in Z/OS but we want to move it to either redhat8 or windows server 2019 and i want to know if any one had done this before in order to ask him if it was a good idea did it work with no problem? or was it…
-2
votes
1 answer

Not able to read next record while browsing KSDS in CICS

I am trying to read a VSAM KSDS file sequentially using STARTBR and READNEXT. I am able to read the 1st record. After processing 1st record, I was expecting the read of 2nd record from the VSAM when READNEXT is executed but only first record is read…
-2
votes
1 answer

Validation of data from VSAM file using CICS + Cobol

I have a VSAM file with customer details and customer number is one of the fields. In CICS the user has to enter a customer number. If and only if the customer number is present in the VSAM file the next map will be sent. How do I validate the…
-2
votes
1 answer

MOVE is invalid - COBOL

I am trying to get this move statement in 01-WS-PRINT REC to work but for some reason when i compile it says "MOVE" was invalid. Scanning was resumed at next....Thoughts? 01 WS-PRINT-REC 10 M-DESC PIC X(25). 10 FILLER PIC X(02). 10…
Rob
  • 57
  • 9
-3
votes
2 answers

javascripts not loading in EDGE and Chrome but work in IE

Web frontend that is all stored on the mainframe and runs in CICS TS. Works fine in IE but not EDGE. In Edge get the following error: Refused to execute script from 'http://999.999.99.999:3028/objserv/RMFGEN01.js' because its MIME type…
dbowers73
  • 21
  • 2
1 2 3
13
14