CICS 8 - Display a Map using Application Program

Displaying a Map using Application Program.

We know that CICS is Customer Information Control System.
CICS is a command level language which consists of set of commands, coded in Procedure Division as follows.

EXEC CICS   -> It Starts With
CMD1
CMD2
----
END-EXEC   -> Ends with


Based on the requirements we use as follows.

  1. It may be displaying a message to User.
  2. Receiving a message from user.
  3. Transferring a control from one program to another Program.
  4. Initiating a Transaction from the program.
Note: The above are very important when we design a CICS program. We must take a decision on what type of program we are going to code.

 Simple Program to Send a Map

  1. Displaying a simple message to User.
Three steps involved while working on this
  1. Code a Cobol Program
  2. Compile the Program.
  3. Register Program & transaction in online tables.


     
    Previous
    Next Post »