FUN_BC_INTERFACE_PARAMS

This table stores the input and output parameters for each interface.

Details

  • Schema: FUSION

  • Object owner: FUN

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

FUN_BC_INTERFACE_PARAMS_PK

ATTRIBUTE_ID

Columns

Name Datatype Length Precision Not-null Comments
ATTRIBUTE_ID NUMBER 18 Yes Identifier of the interface attribute.
INPUT_OUTPUT_FLAG VARCHAR2 1 Yes Type of the attribute. Allowed values are 1 and 2. 1 means input parameter, 2 means output parameter.
ATTRIBUTE_NAME VARCHAR2 200 Yes The name of the interface attribute.
ATTRIBUTE_TYPE VARCHAR2 30 Yes Indicates the type of the attribute. Allowed values are: number,string,object,array.
MAX_LENGTH NUMBER 8 The maximum length of the attribute.
DEFAULT_VALUE VARCHAR2 200 The default value of the attribute.
REQUIRED_FLAG VARCHAR2 1 Indicates whether the attribute is required.
FORMAT_CODE VARCHAR2 30 Format of the attribute,such as YYYY-MM-DD for data.
PARENT_ATTRIBUTE_ID NUMBER 18 Yes Parent attribute identifier of the attribute.The parent attribute id of the root arrtibute is 0.
INTERFACE_ID NUMBER 18 Yes Unique interface identification number.
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.
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.

Foreign Keys

Table Foreign Table Foreign Key Column
FUN_BC_INTERFACE_PARAMS fun_bc_interfaces INTERFACE_ID

Indexes

Index Uniqueness Tablespace Columns
FUN_BC_INTERFACE_PARAMS_U1 Unique Default INTERFACE_ID, INPUT_OUTPUT_FLAG, ATTRIBUTE_ID
FUN_BC_INTERFACE_PARAMS_U2 Unique Default ATTRIBUTE_ID