IBY_FORMAT_TYPES_B
Stores all format types in Oracle Payments
Details
-
Schema: FUSION
-
Object owner: IBY
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
Name | Columns |
---|---|
IBY_FORMAT_TYPE_PK |
FORMAT_TYPE_CODE |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
FORMAT_TYPE_CODE | VARCHAR2 | 30 | Yes | Format type code | |
MESSAGE_DIRECTION | VARCHAR2 | 30 | Yes | Whether the format type is for inbound or outbound. Inbound means the format is used to parse a file send from a trading partner to be consumed by the system; outbound means the system will generate an output file with the format. | |
XML_SCHEMA_CODE | VARCHAR2 | 30 | XML schema code | ||
XML_SCHEMA_XDB_URL | VARCHAR2 | 700 | XML schema XDB URL | ||
LOADER_SERVICE_INTERFACE_CLASS | VARCHAR2 | 230 | Full class name of the Loader SDO web service java client proxy interface. Product teams must provide a composite SDO which will be used by the framework to shred the interface XML to persistent storage (staging tables). Further they must provide a java client proxy for the SDO. The system will rely on the proxy to interact with the SDO. | ||
LOADER_SDO | VARCHAR2 | 230 | Top level SDO name. | ||
LOADER_SDO_MERGE_METHOD | VARCHAR2 | 230 | The merge method of the SDO. Since the top level object which is the inbound file already exists in the database, this method will create the composite children only. The method should take only one parameter which is the SDO. It may return any java object as the result which is simply discarded. It should throw a java Exception in case of error such as insufficient table space. | ||
IMPORTER_SRVC_INTERFACE_CLASS | VARCHAR2 | 230 | Full class name of the Importer web service java client proxy interface. Product teams must provide a web service as the importer code entry point. Further they must provide a java client proxy for the web service. The system will rely on the proxy to interact with the web service. | ||
IMPORT_METHOD | VARCHAR2 | 230 | The import method. The method should take only one parameter which is the inbound file ID. Nothing should be returned i.e., return is void in java. It should throw a java Exception in case of error such as insufficient table space. | ||
LOAD_PROGRAM_TYPE | VARCHAR2 | 30 | Program type for the inbound loader. Supported values are EJB_RMI and ADFBC | ||
EXTRACT_ID | NUMBER | 18 | Extract for format. | ||
BIP_CATALOG_REPORT_ABS_PATH | VARCHAR2 | 1024 | Stores the absolute path from the root to the xdo file for a report. E.g., /Payment Settlement/Disbursements/Outbound Payment Files/Printed Formats/Printed Formats.xdo. Payments seed one BIP report per format type. The different formats for a format type will be stored as templates under the BIP report. | ||
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. | |
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 |
---|---|---|
IBY_FORMAT_TYPES_B | iby_extracts_b | EXTRACT_ID |
iby_format_types_tl | iby_format_types_b | FORMAT_TYPE_CODE |
iby_formats_b | iby_format_types_b | FORMAT_TYPE_CODE |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
IBY_FORMAT_TYPES_B_U1 | Unique | Default | FORMAT_TYPE_CODE, ORA_SEED_SET1 |
IBY_FORMAT_TYPES_B_U11 | Unique | Default | FORMAT_TYPE_CODE, ORA_SEED_SET2 |