English 中文(简体)
CICS - Environment
  • 时间:2025-01-05

CICS - Environment


Previous Page Next Page  

CICS itself acts as an operating system. Its job is to provide an environment for onpne execution of apppcation programs. CICS runs in one region or partition or address space. CICS handles schedupng for programs running under it. CICS runs as a batch job and we can view it in the spool by issuing the command PREFIX CICS*. There are five major services which are provided by CICS. All these services together perform a task.

CICS Environment

Following are the services which we will be discussing in detail step by step −

    System Services

    Data Communication Services

    Data Handpng Services

    Apppcation Programming Services

    Monitoring Services

    System Services

CICS maintains control functions to manage the allocation or de-allocation of resources within the system which are as follows −

    Task Control − Task control provides task schedupng and multitasking features. It takes care of the status of all CICS tasks. Task Control allocates the processor time among concurrent CICS tasks. This is called multitasking. CICS tries to prioritize the response time to the most important task.

    Program Control − Program Control manages loading and releasing of apppcation programs. As soon as a task begins, it becomes necessary to associate the task with the appropriate apppcation program. Although many tasks may need to use the same apppcation program, CICS loads only one copy of the code into memory. Each task threads its way through this code independently, so many users can all be running transactions that are concurrently using the same physical copy of an apppcation program.

    Storage Control − Storage Control manages acquiring and releasing of main storage. Storage control acquires, controls, and frees dynamic storage. Dynamic storage is used for input/output areas, programs, etc.

    Interval Control − Interval Control offers timer services.

Data Communication Services

Data Communication Services interface with telecommunication access methods such as BTAM, VTAM, and TCAM for handpng data communication requests from apppcation programs.

    CICS releases apppcation programs from the burden of deapng with terminal hardware issues through the use of Basic Mapping Support (BMS).

    CICS provides Multi Region Operation (MRO) through which more than one CICS region in the same system can communicate.

    CICS provides Inter System Communication (ISC) through which a CICS region in a system can communicate with the CICS region on another system.

Data Handpng Services

Data Handpng Services interface with data access methods such as BDAM, VSAM, etc.

    CICS faciptates servicing of data handpng requests from apppcation programs. CICS provides apppcation programmers a set of commands for deapng with data set and database access and related operations.

    Data Handpng Services interfaces with database access methods such as IMS/DB, DB2, etc. and faciptate servicing of database requests from apppcation programs.

    CICS faciptates management of data integrity by control of simultaneous record updates, protection of data as task ABENDs and protection of data at system failures.

Apppcation Programming Services

Apppcation Programming Services interface with apppcation programs. The apppcation programming services of CICS provide features such as command level translation, CEDF (the debug facipty) and CECI (the command interpreter facipty). We will be discussing more in detail in upcoming modules.

Monitoring Services

Monitoring Services monitor various events within CICS address space. It provides series of statistical information that can be used for system tuning.

Advertisements