Previous Topic: CLOSE= Closing URTsNext Topic: DEBUG= Controlling the DBUG Environment


Display Example: DBOC CLOSE=??

The specification ?? closes URTs 0001 through 0010. This limitation is set by the MAXURTS= parameter value of 10.

DBOC CLOSE=?? DELIM & DC00173I URT 0001 WILL NOT BE AUTOMATICALLY OPENED. DC00173I URT 0002 WILL NOT BE AUTOMATICALLY OPENED. DC00202I URT 0003-0009 HAVE NO CSD ENTRIES DC00173I URT 0010 WILL NOT BE AUTOMATICALLY OPENED. DC00380I TRANSACTION COMPLETED.

If a URT has been closed with a DBOC CLOSE= command, it can only be opened by issuing a DBOC/DBEC OPEN= command, even if it was listed on the AUTO= parameter in the DBCVTPR macro. You can return it to its initial status by issuing a DBOC RESTART= command.

For example, the previous sample display states that URT 0002 is not automatically opened.

  1. If we were to issue a DBOC INQ=0002, CA Datacom CICS Services would respond:

    DBOC INQ=0002 DELIM & URT 0002(STD CLOSED AUTO ) PRTY=07 TXNUD DC00380I TRANSACTION COMPLETED.

    The CLOSED,AUTO status means that this URT is listed for automatic opening in DBCVTPR, but it has been closed with a DBOC/DBEC CLOSE= command. In this status, CA Datacom CICS Services does not open this URT unless a DBOC/DBEC OPEN= command is issued.

  2. To return it to its initial status, we could issue a DBOC RESTART=0002.
  3. If we then issued another DBOC INQ=0002 command, CA Datacom CICS Services would respond:

    DBOC INQ=0002 DELIM & URT 0002(STD UNOPENED AUTO ) PRTY=07 TXNUD DC00380I TRANSACTION COMPLETED.

    The UNOPENED,AUTO status indicates that CA Datacom CICS Services opens this URT when a program requires it.