HP System Dictionary/XL COBOL Definition Extractor (32257-90001)
2- 19
READ-ONLY Allows you to readSystem Dictionary data definitions, but does not al-
low definitions to be created when the UPDATE-DICT option of the
COPYLIB command is ON. Others can also access the dictionary.
SHARED-UPDATE Allows you to read definitions and create definitions when the UP-
DATE-DICT option of the COPYLIB command is ON. Others can also
access the dictionary.
EXCLUSIVE- UPDATE Allows you to read definitions and create definitions when the
UPDATE-DICT option of the COPYLIB command is ON. No one else
can access the dictionary.
The initial default is to open the dictionary in SHARED-UPDATE mode.
name-mode Specifies which group of names (internal or external) you wish to use. Options are:
INTERNAL Uses internal names. Internal names can never change.
EXTERNAL Uses external names. External names are fully customizable and lo-
calizable.
The default for the first open is EXTERNAL.
Example
The following example opens the dictionary SYSDIC using the scope MANAGER in SHARED-UPDATE
open mode. The password MGR* allows access to the scope.
>DEFINE DICTIONARY=SYSDIC;
>>SCOPE=MANAGER;
>>PASSWORD=MGR*;
>>OPEN-MODE=SHARED-UPDATE.
>
EXIT Command
The EXIT command terminates the SDCDE program. The EXIT command closes the dictionary, copy
library, and other opened files before terminating the program.
Syntax
EXIT [.]
Example
The following example exits the program (closing the dictionary and any files used by the system) and
returns to the operating system prompt.
>EXIT.
END OF PROGRAM
:(Back to MPE)
GENERATE Command
The GENERATE command starts the COBOL source generation process as described in Chapter 4. The
dictionary and COBOL copy library must be open.