Previous Next

DICTIONARY statement
Runs the OpenEdge Data Dictionary.
Note:
Syntax 
 
DICTIONARY
Example 
This procedure runs the Data Dictionary if the user answers yes to a prompt:
 
DEFINE VARIABLE ans AS LOGICAL NO-UNDO.
 
DISPLAY "Do you want to access the Dictionary?"
  WITH ROW 7 COLUMN 20 NO-LABELS.
UPDATE ans.
IF ans THEN DICTIONARY.
Notes 
*
The DICTIONARY statement is equivalent to RUN dict.p: it runs the ABL procedure called dict.p. The AVM uses the regular search rules to find the dictionary procedure. The dictionary procedure is part of the ABL system software.
*
*

Previous Next
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates.