Search Results communication_method
Overview
ECE_ADVO_HEADERS is the inbound transaction status header table within the Oracle E-Business Suite e-Commerce Gateway (EC) module. It stores one row per inbound advice document processed through the gateway, capturing the identifying, trading partner, document classification, and processing-status attributes associated with that transaction. The table serves transactions in three EDI message categories: Invoice (810/INVOIC), Ship Notice/Manifest (856/DESADV), and Shipment and Billing Notice (857). In Oracle EBS 12.1.1 and 12.2.2, the object resides in the EC schema and is reported as VALID, with 49 documented columns in the ETRM 12.2.2 physical schema.
The table functions as the parent header for inbound advice data. Each header row anchors one or more line-level rows in the detail and interface tables. Under the heuristic Data Vault classification mined from its foreign key structure, ECE_ADVO_HEADERS is described as hub-leaning: the surrogate ADVICE_HEADER_ID behaves as a stable business hub key, while descriptive and audit attributes behave as satellite-style dependent data. This classification is a modeling suggestion derived from the FK topology, not a mandated design for the EBS schema.
Key Information Stored
The primary key is defined by the constraint ECE_ADVO_HEADERS_PK on the column ADVICE_HEADER_ID. A separate unique index, ECE_ADVO_HEADERS_U1, is also defined on ADVICE_HEADER_ID, making it the documented business-key candidate in addition to the surrogate identifier. The most significant columns fall into the following groups.
- Identity and linking: ADVICE_HEADER_ID (surrogate primary key), TP_HEADER_ID (trading partner header reference), RELATED_DOCUMENT_ID, and SECURITY_GROUP_ID, which references FND_SECURITY_GROUPS and enforces multi-org security scoping.
- Document classification: DOCUMENT_TYPE, DOCUMENT_CODE, and DOCUMENT_STANDARD, which identify the EDI transaction set and standard invoked by the inbound interface.
- Transaction control: TRANSACTION_DATE, TRANSACTION_CONTROL1, TRANSACTION_CONTROL2, and TRANSACTION_CONTROL3, which carry control numbers and dates used for reconciliation and duplicate detection.
- Processing status: EDI_PROCESSED_FLAG and EDI_PROCESS_DATE, which record whether the advice has been processed and when that processing occurred.
- Trading partner detail: TP_NAME, TP_CODE, TP_ENTITY_TYPE, TP_LOCATION_CODE_EXT, TP_ADDRESS1 through TP_ADDRESS4, TP_CITY, TP_STATE, TP_PROVINCE, TP_COUNTY, TP_POSTAL_CODE, and TP_COUNTRY, which preserve the partner address and location as received.
- Cross-references: EXTERNAL_REFERENCE1 through EXTERNAL_REFERENCE6 and INTERNAL_REFERENCE1 through INTERNAL_REFERENCE6, which map inbound identifiers to internal values.
- Audit and concurrency: CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical use cases include monitoring inbound 810, 856, and 857 traffic, auditing unprocessed or failed advice headers, reconciling control numbers against transmitted documents, and joining header data to line detail for reporting.
Listing unprocessed headers for a document type:
- SELECT ADVICE_HEADER_ID, DOCUMENT_TYPE, TRANSACTION_DATE, TP_CODE FROM EC.ECE_ADVO_HEADERS WHERE EDI_PROCESSED_FLAG = 'N';
Joining headers to detail rows across the documented foreign key:
- SELECT h.ADVICE_HEADER_ID, h.DOCUMENT_TYPE, d.ADVICE_HEADER_ID FROM EC.ECE_ADVO_HEADERS h JOIN EC.ECE_ADVO_DETAILS d ON d.ADVICE_HEADER_ID = h.ADVICE_HEADER_ID;
Isolating headers within a security group:
- SELECT h.ADVICE_HEADER_ID, h.TRANSACTION_CONTROL1 FROM EC.ECE_ADVO_HEADERS h WHERE h.SECURITY_GROUP_ID = :security_group_id;
Related Objects
- ECE_ADVO_DETAILS — child table; joined on ECE_ADVO_DETAILS.ADVICE_HEADER_ID = ECE_ADVO_HEADERS.ADVICE_HEADER_ID.
- ECE_ADVO_DETAILS_INTERFACE — interface child table; joined on ECE_ADVO_DETAILS_INTERFACE.ADVICE_HEADER_ID = ECE_ADVO_HEADERS.ADVICE_HEADER_ID.
- FND_SECURITY_GROUPS — referenced by ECE_ADVO_HEADERS.SECURITY_GROUP_ID for multi-org security.
- ECE_ADVO_HEADERS_PK / ECE_ADVO_HEADERS_U1 — primary key constraint and unique index on ADVICE_HEADER_ID.
-
Table: ECE_ADVO_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS, object_name:ECE_ADVO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the status data for inbound transactions: Invoice (810/INVOIC), Ship Notice/Manifest (856/DESADV) and Shipment and Billing Notice (857). , implementation_dba_data: EC.ECE_ADVO_HEADERS ,
-
Table: ECE_MVSTO_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_MVSTO_HEADERS, object_name:ECE_MVSTO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the movement statistics header data to support the outbound Movement Statistics transaction. , implementation_dba_data: EC.ECE_MVSTO_HEADERS ,
-
Table: ECE_AP_CHECKS_INTERFACE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the payment data to support the outbound Payment/Remittance Advice (820/PAYORD/REMADV) transaction. , implementation_dba_data: EC.ECE_AP_CHECKS_INTERFACE ,
-
Table: ECE_AR_TRX_HEADER_1
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_HEADER_1, object_name:ECE_AR_TRX_HEADER_1, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice header data to support the outbound Invoice (810/INVOIC) transaction. Continuation of ECE_AR_TRX_HEADERS. , implementation_dba_data: EC.ECE_AR_TRX_HEADER_1 ,
-
Table: ECE_AR_TRX_ALLOWANCE_CHARGES
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_ALLOWANCE_CHARGES, object_name:ECE_AR_TRX_ALLOWANCE_CHARGES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice allowance charges information to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_ALLOWANCE_CHARGES ,
-
Table: ECE_AR_TRX_ALLOWANCE_CHARGES
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_ALLOWANCE_CHARGES, object_name:ECE_AR_TRX_ALLOWANCE_CHARGES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice allowance charges information to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_ALLOWANCE_CHARGES ,
-
Table: ECE_ADVO_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS, object_name:ECE_ADVO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the status data for inbound transactions: Invoice (810/INVOIC), Ship Notice/Manifest (856/DESADV) and Shipment and Billing Notice (857). , implementation_dba_data: EC.ECE_ADVO_HEADERS ,
-
Table: ECE_ADVO_HEADERS_INTERFACE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS_INTERFACE, object_name:ECE_ADVO_HEADERS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the header data to support the outbound Application Advice (824/APERAK) transaction. , implementation_dba_data: EC.ECE_ADVO_HEADERS_INTERFACE ,
-
Table: ECE_AR_TRX_LINE_TAX
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_LINE_TAX, object_name:ECE_AR_TRX_LINE_TAX, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice line tax data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_LINE_TAX ,
-
Table: ECE_ADVO_HEADERS_INTERFACE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS_INTERFACE, object_name:ECE_ADVO_HEADERS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the header data to support the outbound Application Advice (824/APERAK) transaction. , implementation_dba_data: EC.ECE_ADVO_HEADERS_INTERFACE ,
-
Table: ECE_MVSTO_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_MVSTO_HEADERS, object_name:ECE_MVSTO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the movement statistics header data to support the outbound Movement Statistics transaction. , implementation_dba_data: EC.ECE_MVSTO_HEADERS ,
-
Table: ECE_AR_TRX_HEADER_1
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_HEADER_1, object_name:ECE_AR_TRX_HEADER_1, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice header data to support the outbound Invoice (810/INVOIC) transaction. Continuation of ECE_AR_TRX_HEADERS. , implementation_dba_data: EC.ECE_AR_TRX_HEADER_1 ,
-
Table: ECE_PO_INTERFACE_LINES
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_LINES, object_name:ECE_PO_INTERFACE_LINES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order line data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_LINES ,
-
Table: ECE_AR_TRX_LINE_TAX
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_LINE_TAX, object_name:ECE_AR_TRX_LINE_TAX, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice line tax data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_LINE_TAX ,
-
Table: ECE_AP_CHECKS_INTERFACE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the payment data to support the outbound Payment/Remittance Advice (820/PAYORD/REMADV) transaction. , implementation_dba_data: EC.ECE_AP_CHECKS_INTERFACE ,
-
Table: ECE_AR_TRX_LINES
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_LINES, object_name:ECE_AR_TRX_LINES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice line data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_LINES ,
-
Table: ECE_PO_INTERFACE_SHIPMENTS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_SHIPMENTS, object_name:ECE_PO_INTERFACE_SHIPMENTS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order shipment data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_SHIPMENTS ,
-
Table: ECE_AR_TRX_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_HEADERS, object_name:ECE_AR_TRX_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice header data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_HEADERS ,
-
Table: ECE_PO_INTERFACE_LINES
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_LINES, object_name:ECE_PO_INTERFACE_LINES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order line data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_LINES ,
-
Table: ECE_PO_INTERFACE_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_HEADERS, object_name:ECE_PO_INTERFACE_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order header data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_HEADERS ,
-
Table: ECE_AR_TRX_LINES
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_LINES, object_name:ECE_AR_TRX_LINES, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice line data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_LINES ,
-
Table: ECE_AR_TRX_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AR_TRX_HEADERS, object_name:ECE_AR_TRX_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the customer invoice header data to support the outbound Invoice (810/INVOIC) transaction. , implementation_dba_data: EC.ECE_AR_TRX_HEADERS ,
-
Table: ECE_PO_INTERFACE_SHIPMENTS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_SHIPMENTS, object_name:ECE_PO_INTERFACE_SHIPMENTS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order shipment data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_SHIPMENTS ,
-
Table: ECE_SPSO_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_SPSO_HEADERS, object_name:ECE_SPSO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the supplier schedule header data to support the outbound Planning Schedule (830/DELFOR) and Shipping Schedule (862/DELJIT) transactions. , implementation_dba_data: EC.ECE_SPSO_HEADERS ,
-
Table: ECE_SPSO_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_SPSO_HEADERS, object_name:ECE_SPSO_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the supplier schedule header data to support the outbound Planning Schedule (830/DELFOR) and Shipping Schedule (862/DELJIT) transactions. , implementation_dba_data: EC.ECE_SPSO_HEADERS ,
-
Table: ECE_PO_INTERFACE_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_HEADERS, object_name:ECE_PO_INTERFACE_HEADERS, status:VALID, product: EC - e-Commerce Gateway , description: Contains the purchase order header data to support the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transactions. , implementation_dba_data: EC.ECE_PO_INTERFACE_HEADERS ,
-
View: ECE_ADVO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_ADVO_HEADERS_V, object_name:ECE_ADVO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts advice header informationfor the outbound Application Advice (824/APERAK) transaction.@rep:scope private@rep:product EC@rep:lifecycle active@rep:displayname Application Advice Header View@rep:category BUSINESS_ENTITY EC_A , implementation_dba_data: APPS.ECE_ADVO_HEADERS_V ,
-
View: ECE_ADVO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_ADVO_HEADERS_V, object_name:ECE_ADVO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts advice header informationfor the outbound Application Advice (824/APERAK) transaction.@rep:scope private@rep:product EC@rep:lifecycle active@rep:displayname Application Advice Header View@rep:category BUSINESS_ENTITY EC_A , implementation_dba_data: APPS.ECE_ADVO_HEADERS_V ,
-
View: ECE_MVSTO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Movement Statistics (INTRASTAT) transaction.@rep:scope private@rep:product INV@rep:lifecycle active@rep:displayname Movement Statistics Header View@rep:category BUSINESS_ENTITY INV_MOVEM , implementation_dba_data: APPS.ECE_MVSTO_HEADERS_V ,
-
View: ECE_MVSTO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Movement Statistics (INTRASTAT) transaction.@rep:scope private@rep:product INV@rep:lifecycle active@rep:displayname Movement Statistics Header View@rep:category BUSINESS_ENTITY INV_MOVEM , implementation_dba_data: APPS.ECE_MVSTO_HEADERS_V ,
-
View: ECE_SPSO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_SPSO_HEADERS_V, object_name:ECE_SPSO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Planning Schedule (830/DELFOR) transaction.@rep:scope private@rep:product CHV@rep:lifecycle active@rep:displayname Planning Schedule Header View@rep:category BUSINESS_ENTITY CHV_PLANNING , implementation_dba_data: APPS.ECE_SPSO_HEADERS_V ,
-
View: ECE_PYO_PAYMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts payment informationfor the outbound Payment Order/Remittance Advice (820/PAYORD/REMADV) transaction.@rep:scope private@rep:product AP@rep:lifecycle active@rep:displayname Payment Order/Remittance Advice Payment View@rep:c , implementation_dba_data: APPS.ECE_PYO_PAYMENT_V ,
-
View: ECE_DSNO_DELIVERIES_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: ECE_PYO_PAYMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts payment informationfor the outbound Payment Order/Remittance Advice (820/PAYORD/REMADV) transaction.@rep:scope private@rep:product AP@rep:lifecycle active@rep:displayname Payment Order/Remittance Advice Payment View@rep:c , implementation_dba_data: APPS.ECE_PYO_PAYMENT_V ,
-
View: ECE_SSSO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_SSSO_HEADERS_V, object_name:ECE_SSSO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Shipping Schedule (862/DELJIT) transaction.@rep:scope private@rep:product CHV@rep:lifecycle active@rep:displayname Shipping Schedule Header View@rep:category BUSINESS_ENTITY CHV_SHIPPING , implementation_dba_data: APPS.ECE_SSSO_HEADERS_V ,
-
View: ECE_DSNO_DELIVERIES_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: ECE_SSSO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_SSSO_HEADERS_V, object_name:ECE_SSSO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Shipping Schedule (862/DELJIT) transaction.@rep:scope private@rep:product CHV@rep:lifecycle active@rep:displayname Shipping Schedule Header View@rep:category BUSINESS_ENTITY CHV_SHIPPING , implementation_dba_data: APPS.ECE_SSSO_HEADERS_V ,
-
View: ECE_SPSO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_SPSO_HEADERS_V, object_name:ECE_SPSO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Planning Schedule (830/DELFOR) transaction.@rep:scope private@rep:product CHV@rep:lifecycle active@rep:displayname Planning Schedule Header View@rep:category BUSINESS_ENTITY CHV_PLANNING , implementation_dba_data: APPS.ECE_SPSO_HEADERS_V ,
-
View: ECE_INO_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_HEADER_V, object_name:ECE_INO_HEADER_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Invoice (810/INVOIC) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Invoice Header View@rep:category BUSINESS_ENTITY AR_INVOICE , implementation_dba_data: APPS.ECE_INO_HEADER_V ,
-
View: ECE_INO_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_HEADER_V, object_name:ECE_INO_HEADER_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Invoice (810/INVOIC) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Invoice Header View@rep:category BUSINESS_ENTITY AR_INVOICE , implementation_dba_data: APPS.ECE_INO_HEADER_V ,
-
View: ECE_CDMO_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_HEADER_V, object_name:ECE_CDMO_HEADER_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Header View@rep:category BUSINESS_ENTITY AR_CRE , implementation_dba_data: APPS.ECE_CDMO_HEADER_V ,
-
View: ECE_CDMO_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_HEADER_V, object_name:ECE_CDMO_HEADER_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Header View@rep:category BUSINESS_ENTITY AR_CRE , implementation_dba_data: APPS.ECE_CDMO_HEADER_V ,
-
View: ECE_POO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_HEADERS_V, object_name:ECE_POO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts header information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO * @rep:lifecycle active* @rep:displayname Purchase Order Header View* @rep:category BUSINESS_ENTI , implementation_dba_data: APPS.ECE_POO_HEADERS_V ,
-
View: ECE_POO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_HEADERS_V, object_name:ECE_POO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts header information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO * @rep:lifecycle active* @rep:displayname Purchase Order Header View* @rep:category BUSINESS_ENTI , implementation_dba_data: APPS.ECE_POO_HEADERS_V ,
-
View: ECE_POCO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_HEADERS_V, object_name:ECE_POCO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Header View@rep:category BUSINESS_ENTITY PO_PU , implementation_dba_data: APPS.ECE_POCO_HEADERS_V ,
-
View: ECE_POCO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_HEADERS_V, object_name:ECE_POCO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Header View@rep:category BUSINESS_ENTITY PO_PU , implementation_dba_data: APPS.ECE_POCO_HEADERS_V ,