Search Results iby_trxn_core
Overview
IBY_TRXN_CORE is a core payment-instrument transaction table owned by the IBY (Payments) schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the low-level transaction detail captured during payment processing — authorization results, terminal and trace identifiers, point-of-sale data, cardholder or instrument-owner attributes, and security-segment references. The table carries 50 documented columns and is validated in the ETRM 12.2.2 release.
From a Data Vault modeling perspective, the mined FK structure classifies IBY_TRXN_CORE as satellite-leaning. This is a heuristic suggestion rather than a database constraint: the object holds descriptive, transaction-scoped attributes that cluster around a primary transactional hub (IBY_TRXN_SUMMARIES_ALL), making it a natural candidate for a satellite table in a Data Vault design rather than a standalone hub or link.
Key Information Stored
The surrogate primary key is TRXNMID, enforced by the constraint IBY_TRXN_CORE_PK and backed by the unique index IBY_TRXN_CORE_TRXNMID_U1. TRXNMID is also the sole business-key candidate identified in the documentation, and it doubles as the foreign key joining this table to IBY_TRXN_SUMMARIES_ALL. The most significant descriptive columns include:
- TRXNMID — Primary key and join key to transaction summaries.
- TERMINALID, TRACENUMBER, PROC_TRACENUMBER — Terminal and network trace identifiers used to reconcile a transaction across the payment network.
- AUTHCODE, REFERENCECODE, AUTHTYPE, OPERATIONCODE — Authorization outcome codes and operation classification.
- AVSCODE, CVV2RESULT, VOICEAUTHFLAG, DATE_OF_VOICE_AUTHORIZATION — Fraud and verification responses, including address verification, card verification value results, and voice-authorization audit data.
- POS_READER_CAPABILITY_CODE, POS_ENTRY_METHOD_CODE, POS_ID_METHOD_CODE, POS_AUTH_SOURCE_CODE, POS_TRXN_FLAG, READER_DATA — Point-of-sale capture characteristics that describe how the instrument data was presented.
- INSTR_NAME, INSTR_EXPIRYDATE, CARD_SUBTYPE_CODE, CARD_DATA_LEVEL, DEBIT_NETWORK_CODE — Instrument identity and classification fields.
- INSTR_OWNER_NAME, INSTR_OWNER_ADDRESS_LINE1–3, INSTR_OWNER_CITY, INSTR_OWNER_STATE_PROVINCE, INSTR_OWNER_COUNTRY, INSTR_OWNER_POSTALCODE, INSTR_OWNER_PHONE, INSTR_OWNER_EMAIL — Cardholder or instrument-owner contact and billing data.
- PONUMBER, TAXAMOUNT, SHIPFROMZIP, SHIPTOZIP, SURCHARGE_AMOUNT — Purchase-order reference and monetary context.
- ENCRYPTED, EXPIRY_SEC_SEGMENT_ID, CHNAME_SEC_SEGMENT_ID, SECURITY_GROUP_ID — Encryption flag, security-segment pointers, and the multi-org security-group identifier.
- OBJECT_VERSION_NUMBER, LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN — Standard EBS WHO-column audit set.
Common Use Cases and Queries
The table is most often queried for payment authorization reporting, fraud/AVS review, and POS reconciliation. A typical join pattern resolves transaction-level detail to its summary record:
- Reconcile authorizations by trace number:
SELECT s.TRXNMID, s.TOTAL, c.AUTHCODE, c.TRACENUMBER FROM IBY_TRXN_SUMMARIES_ALL s, IBY_TRXN_CORE c WHERE s.TRXNMID = c.TRXNMID. - AVS/CVV review reporting:
SELECT TRXNMID, AVSCODE, CVV2RESULT FROM IBY_TRXN_CORE WHERE AVSCODE NOT IN ('Y','M'). - POS analytics grouping by POS_ENTRY_METHOD_CODE or POS_READER_CAPABILITY_CODE to assess capture channels.
- Security-scoped extraction using SECURITY_GROUP_ID to honor multi-org data access rules.
Because the table carries owner PII and card data, queries should observe IBY payment-security policies and any data-masking views layered over it.
Related Objects
The following objects are most directly related, based on documented FK/PK relationships:
- IBY_TRXN_SUMMARIES_ALL — Parent summary table joined via IBY_TRXN_CORE.TRXNMID.
- IBY_SECURITY_SEGMENTS — Referenced twice, via CHNAME_SEC_SEGMENT_ID and EXPIRY_SEC_SEGMENT_ID, for encrypted cardholder-name and expiry tokenization.
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID for multi-org security enforcement.
- IBY_TRXN_CORE_PK / IBY_TRXN_CORE_TRXNMID_U1 — Primary-key constraint and unique index on TRXNMID.
Together these objects form the transactional spine through which IBY payment instrument data is stored, secured, and reported in EBS 12.1.1 and 12.2.2.
-
Table: IBY_TRXN_CORE
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRXN_CORE, object_name:IBY_TRXN_CORE, status:VALID, product: IBY - Payments , description: IBY_BEPKEYS stores information about the payment systems. , implementation_dba_data: IBY.IBY_TRXN_CORE ,
-
Table: IBY_TRXN_CORE
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRXN_CORE, object_name:IBY_TRXN_CORE, status:VALID, product: IBY - Payments , description: IBY_TRXN_CORE contains the details of a payment request that are specific for basic credit card operations. , implementation_dba_data: IBY.IBY_TRXN_CORE ,
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.1.1
-
View: IBY_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_V ,
-
SYNONYM: APPS.IBY_TRXN_CORE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBY_TRXN_CORE, status:VALID,
-
Table: IBY_SECURITY_SEGMENTS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_SECURITY_SEGMENTS, object_name:IBY_SECURITY_SEGMENTS, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_SECURITY_SEGMENTS ,
-
VIEW: APPS.IBY_TRANS_ALL_V
12.1.1
-
VIEW: APPS.IBY_TRANS_ALL_V
12.2.2
-
View: IBY_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_V ,
-
APPS.IBY_FNDCPT_VLD_PUB SQL Statements
12.1.1
-
SYNONYM: APPS.IBY_TRXN_CORE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBY_TRXN_CORE, status:VALID,
-
VIEW: IBY.IBY_TRXN_CORE#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_TRXN_CORE#, status:VALID,
-
VIEW: APPS.IBY_TRXN_EXT_REVERSALS_V
12.2.2
-
VIEW: APPS.IBY_TRXN_EXT_AUTHS_V
12.1.1
-
VIEW: IBY.IBY_TRXN_CORE#
12.2.2
-
PACKAGE: APPS.IBY_OFFLINEDB_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBY_OFFLINEDB_PKG, status:VALID,
-
VIEW: APPS.IBY_TRANS_CORE_V
12.1.1
-
VIEW: APPS.IBY_TRANS_PCARD_V
12.2.2
-
PACKAGE: APPS.IBY_TRANSACTIONSET_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBY_TRANSACTIONSET_PKG, status:VALID,
-
VIEW: APPS.IBY_TRXN_EXT_AUTHS_V
12.2.2
-
PACKAGE BODY: APPS.IBY_FNDCPT_VLD_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_FNDCPT_VLD_PUB, status:VALID,
-
PACKAGE: APPS.IBY_TRANSACTIONSET_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBY_TRANSACTIONSET_PKG, status:VALID,
-
PACKAGE: APPS.IBY_OFFLINEDB_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBY_OFFLINEDB_PKG, status:VALID,
-
VIEW: APPS.IBY_TRANS_CORE_V
12.2.2
-
APPS.IBY_OFFLINEDB_PKG SQL Statements
12.2.2
-
VIEW: APPS.IBY_TRANS_PCARD_V
12.1.1
-
PACKAGE: APPS.IBY_AR_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBY_AR_UTILS, status:VALID,
-
APPS.IBY_FNDCPT_VLD_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBY_AR_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_AR_UTILS, status:VALID,
-
PACKAGE: APPS.IBY_AR_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBY_AR_UTILS, status:VALID,
-
APPS.IBY_OFFLINEDB_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IBY_OFFLINEDB_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_OFFLINEDB_PKG, status:VALID,
-
PACKAGE BODY: APPS.IBY_SCHED
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_SCHED, status:VALID,
-
PACKAGE BODY: APPS.IBY_TRANSACTIONSET_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_TRANSACTIONSET_PKG, status:VALID,
-
PACKAGE BODY: APPS.IBY_OFFLINEDB_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_OFFLINEDB_PKG, status:VALID,
-
PACKAGE BODY: APPS.IBY_TRANSACTIONSET_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_TRANSACTIONSET_PKG, status:VALID,
-
PACKAGE BODY: APPS.IBY_AR_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_AR_UTILS, status:VALID,
-
VIEW: APPS.IBY_XML_FNDCPT_DOC_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_DOC_HEADER_V, object_name:IBY_XML_FNDCPT_DOC_HEADER_V, status:VALID,
-
PACKAGE BODY: APPS.IBY_FNDCPT_VLD_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_FNDCPT_VLD_PUB, status:VALID,
-
PACKAGE: APPS.IBY_TRANSACTIONCC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBY_TRANSACTIONCC_PKG, status:VALID,
-
VIEW: APPS.IBY_XML_FNDCPT_CREDITCARD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_CREDITCARD_V, object_name:IBY_XML_FNDCPT_CREDITCARD_V, status:VALID,
-
PACKAGE: APPS.IBY_TRANSACTIONCC_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBY_TRANSACTIONCC_PKG, status:VALID,
-
Table: IBY_TRXN_SUMMARIES_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRXN_SUMMARIES_ALL, object_name:IBY_TRXN_SUMMARIES_ALL, status:VALID, product: IBY - Payments , description: IBY_TRXN_SUMMARIES_ALL contains information about each payment request. This table is used for both online and offline payment transactions. The information contained in this table is generic in nature to cover the various payment inst , implementation_dba_data: IBY.IBY_TRXN_SUMMARIES_ALL ,
-
VIEW: APPS.IBY_XML_FNDCPT_DOC_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_DOC_HEADER_V, object_name:IBY_XML_FNDCPT_DOC_HEADER_V, status:VALID,
-
VIEW: APPS.IBY_XML_FNDCPT_CREDITCARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_CREDITCARD_V, object_name:IBY_XML_FNDCPT_CREDITCARD_V, status:VALID,
-
View: IBY_TRANS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANS_ALL_V, object_name:IBY_TRANS_ALL_V, status:VALID, product: IBY - Payments , description: View used to work with transactions. , implementation_dba_data: APPS.IBY_TRANS_ALL_V ,
-
View: IBY_TRANS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANS_ALL_V, object_name:IBY_TRANS_ALL_V, status:VALID, product: IBY - Payments , description: View used to work with transactions. , implementation_dba_data: APPS.IBY_TRANS_ALL_V ,
-
PACKAGE BODY: APPS.IBY_TRANSACTIONCC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_TRANSACTIONCC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IBY_FNDCPT_TRXN_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_FNDCPT_TRXN_PUB, status:VALID,