CZ_SIGNATURES

CZ_SIGNATURES stores method and rule template signatures.

Details

  • Schema: FUSION

  • Object owner: CZ

  • Object type: TABLE

  • Tablespace: REFERENCE

Primary Key

Name Columns

CZ_SIGNATURES_PK

SIGNATURE_CODE

Columns

Name Datatype Length Precision Not-null Comments
SIGNATURE_CODE VARCHAR2 48 Yes Primary key. For seeded Configurator types, this is same as element name in the Configurator types enumeration in Type.java. For CXs this will be a string representing a number generated from a sequence.
DATA_TYPE VARCHAR2 48 Yes Return data type. Self Foreign Key to SIGNATURE_CODE
ARGUMENT_COUNT NUMBER 9 Yes Specifies the number of arguments for this signature. Used for validation of number of records in CZ_SIGNATURE_ARGUMENTS.
DELETED_FLAG NUMBER 18 Yes This flag indicates the logical deletion of the row. The Non-Zero value represents deleted state and 0 represents not-deleted state. A user controlled background purge process will physically delete the orphaned rows with the Non-Zero flag value.
SIGNATURE_TYPE VARCHAR2 30 Yes Allowable values: 'TPL' (template), 'PDT' (data type), 'EVT' (event)
JAVA_DATA_TYPE VARCHAR2 1000 Used to store name of the java return type
EVENT_BINDING_SCOPE NUMBER 9 When signature_type is ???EVT???, this bitfield defines the allowed execution scopes for the event type.
SATTR_VALUES_LOOKUP VARCHAR2 30 Associated system attribute values lookup code.
NAME VARCHAR2 30 Name of the signature
DESCRIPTION VARCHAR2 1000 Description of the signature
COLLECTION_FLAG VARCHAR2 1 Indicates whether return data type is a collection.
MUTABLE_FLAG VARCHAR2 1 Yes Indicates if the return type of the signature can fill in a mutable spot in a parent template
SEEDED_FLAG VARCHAR2 1 Yes Indicates whether this is a seeded or user-created signature
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.
SEED_DATA_SOURCE VARCHAR2 512 Source of seed data record. A value of 'BULK_SEED_DATA_SCRIPT' indicates that record was bulk loaded. Otherwise, specifies the name of the seed data file.
ORA_SEED_SET1 VARCHAR2 1 Yes Oracle internal use only. Indicates the edition-based redefinition (EBR) context of the row for SET1. Context values are Y or N.
ORA_SEED_SET2 VARCHAR2 1 Yes Oracle internal use only. Indicates the edition-based redefinition (EBR) context of the row for SET2. Context values are Y or N.

Foreign Keys

Table Foreign Table Foreign Key Column
cz_rule_templates cz_signatures SIGNATURE_CODE
cz_signature_arguments cz_signatures SIGNATURE_CODE
cz_rules cz_signatures SIGNATURE_CODE
cz_expression_nodes cz_signatures DATA_TYPE
cz_expression_nodes cz_signatures PARAM_SIGNATURE_CODE
cz_expression_nodes cz_signatures ARGUMENT_SIGNATURE_CODE

Indexes

Index Uniqueness Tablespace Columns
CZ_SIGNATURES_U1 Unique Default SIGNATURE_CODE, ORA_SEED_SET1
CZ_SIGNATURES_U11 Unique Default SIGNATURE_CODE, ORA_SEED_SET2