In CICS defining resources like (Programs, Maps, Mapsets, Files etc) is an important task to work with CICS.
By Typing CEDA, you can see menu panel for CEDA.
Define table entries in CICS
CEDA DEIFNE:
- CEDA DEFINE PROGRAM(pgm name) GROUP(grp name)
CEDA INSTALL GROUP(grp name)
- CEDA DEFINE MAPSET(INTSET1) GROUP(INTGRP)
CEDA INSTALL GROUP(grp name)
- CEDA DEFINE FILE(INTMST) GROUP(INTGRP)
CEDA INSTALL GROUP(grp name)
- CEDA DEFINE TRANSACTION(INT1) GROUP(INTGRP)
Other CEDA Commands:
ADD – Adds a group to a list.
ADD GROUP(ccpct) LIST(initlist)
ALTER – Modifies the attributes of an existing entry.
ALTER PROGRAM(cctstpgm) GROUP(ccppt)
You must install the group for the changes to take place.
DELETE – Erases entries.
DELETE ALL(*) GROUP(ccpct) Deletes all entries from group ccpct. DELETE PROGRAM(cctstpgm) GROUP(ccppt) Deletes program cctstpgm.
DISPLAY – Shows the group or list names.
DISPLAY GROUP(*) Displays all groups. DISPLAY GROUP(ccts*) Shows all groups starting with ccts. DISPLAY LIST(*) Displays all lists.
VIEW – Show attributes of an existing entry.
VIEW PROGRAM(cctstpgm) GROUP(ccpct).
Related articles
- CICS-Rules for Communication Area (srinimf.com)
- COBOL- Debugger and Programmer Role (srinimf.com)
2 thoughts
Comments are closed.