For users unable to use the Java based interfaces for administering Classes and Users, this page will help you achieve these tasks.
| ELEMENT_ATTR_C1 table |
||
| Column Name |
Column Type |
Description |
| ELEMENT_ID |
NUMBER |
The unique identifier of this
Element in the local repository. If you do not specify an ID
value, one will be automatically generated on INSERT. Once
assigned, this value can not be modified. |
| NAME_FIRST |
STRING |
This is the persons first name |
| NAME_MIDDLE |
STRING |
This is the persons middle name |
| NAME_LAST |
STRING |
This is the persons last name |
| EMAIL_ADDRESS |
STRING |
This email address will be used
to send generated email notifications to this user. |
| DB_USER_ID |
NUMBER |
This identifier is equivalent to
the Oracle UID pseudocolumn. |
| DB_USER_NAME |
STRING |
This identifier is equivalent to
the Oracle USER pseudocolumn |
| REQUESTED_PASSWORD |
STRING |
This will be the initial
password given to the newly created Oracle user account. |
| CLASS table |
||
| Column Name |
Column Type |
Description |
| CLASS_ID |
NUMBER |
This is a unique identifier for
this particular class in the local repository. |
| NAME |
STRING |
This is the name users will call
this class |
| PREFIX |
STRING |
The prefix will be used to
generate default lables for elements within this class |
| DESCRIPTION |
STRING |
This is a textual description of
the contents of this class. |
| TYPE_ID |
NUMBER |
The type of class is limited to the value 14 - meaning 'USER_DEFINED' Other values are reserved for internal use. |
| COLOR_ID |
NUMBER |
This is a foreign key reference
to the COLOR table. Any value found in that table is a valid
value here. Default = 0 for black. This is the color that will be
used to represent elements in this class in default summary filters and
class listings. |
| SYMBOL_ID |
NUMBER |
This is a foreign key to the
SYMBOL table. Any valid value in that table is valid here. |
| PACKAGE_ID |
NUMBER |
Classes may be placed in to a
package hierarchy. This is a foreign key in to the PACKAGE table.
any valid value found in that table is valid here. |
| ATTRIBUTE table |
||
| Column Name |
Column Type |
Description |
| ATTRIBUTE_ID |
NUMBER |
This is a unique identifier for
this particular attribute in the local repository. |
| TYPE_ID |
NUMBER |
The logical type of column this
attribute represents. Valid values are: 4 = HYPERLINK 8 = PICK_LIST 71 = STATE_MACHINE 112 = SQL_PICK_LIST 34 = STRING 17 = NUMBER 18 = BOOLEAN 19 = DATE_TIME |
| COLUMN_NAME |
STRING |
This is the physical Oracle
column name that will be used when instantiating this attribute into a
physical table. Oracle column name restrictions apply here. |
| COLUMN_TYPE_ID |
NUMBER | This identifier represents the
physical type of column that should be generated when instantiating
this attribute tnto a physical table. valid values are: 1 = VARCHAR2 2 = NUMBER 3 = DATE |
| COLUMN_SIZE |
NUMBER |
.This value indicates the size
of varchar2 column. Max is 4000 |
| STATE_MACHINE_ID |
NUMBER |
If the type is 71 (STATE
MACHINE) then this identifier is a foreign key to the STATE_MACHINE
table pointing to the machine to use to populate the values in the
elements of this class. |
| LIST_ID |
NUMBER |
If the type is 112 (SQL PICK LIST) then this identifier is a foreign key to the named_text table pointing to the filter to use as the SQL source to populate the values in the elements of this class. |
| CLASS_ATTRIBUTE table |
||
| Column Name |
Column Type |
Description |
| CLASS_ID |
NUMBER |
This is a unique identifier for
this particular class in the local repository that this attribute
should be included in |
| ATTRIBUTE_ID |
NUMBER | This is the unique identifier of
the attribute that should be included in this class. |
| DISPLAY_NAME |
STRING |
This is the label that will be
displayed on default editors and filters when referring to this
attribute within this class. (note that is does not need to be the same
as the physical column name) |
| TOOL_TIP |
STRING |
This is a textual information
displayed when the user hovers a mouse over the attribute in the
default editors |
| TYPE_ID |
NUMBER |
The type class_attribute is
limited to the value 73 - meaning 'ORIGINAL'. Other values are
reserved for internal use. |
| POSITION |
NUMBER |
This ordinal number is used as a
sort value to determine the order in which the attributes are displayed
to the user by default in various editors and generated filters.. |
| DISPLAY_ROWS |
NUMBER |
For string type attributes, this
value indicates the default number of rows the editors will use to
allow the user to view and modify the information. |
| DEFAULT_VALUE |
STRING |
This value will be used to
populate any element in this class that is inserted with a null in this
attribute. |