Search Results registry_id
Overview
APPS.POS_SUPP_PUB_HISTORY_V is a reporting and integration view in Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) that exposes the history of supplier publication events. It records the moment a supplier record was published — for example, when supplier data is pushed to an external registry, portal, or third-party integration through the Supplier Lifecycle Management / supplier publishing framework. Each row represents one publication event, combining the publication history record with descriptive supplier attributes and the identity of the user who performed the publish.
The view is denormalized for convenience: rather than requiring the reporting or integration layer to join back to AP_SUPPLIERS, HZ_PARTIES, and FND_USER, it presents supplier name, registry number, supplier number, and the publishing user's login in a single flat structure. This makes it a natural source for operational dashboards, audit extracts, and outbound integration queries.
Underlying Base Objects
The documented base objects referenced by this view are:
- POS_SUPP_PUB_HISTORY — the driving table, holding the publication event rows (event id, party id, publication date, publisher, detail, XML payload, audit columns, request id).
- AP_SUPPLIERS — the supplier master, joined on
party_id, supplyingVENDOR_ID,PARTY_ID, andSEGMENT1(supplier number). - HZ_PARTIES — the party/registry master, joined on
party_id, supplyingPARTY_NAMEandPARTY_NUMBER. - FND_USER — the application user directory, joined on
user_id = published_by, supplying the user name. - STANDARD (PACKAGE) and XMLTYPE (TYPE) — referenced for the XML payload handling of
XMLCONTENT.
All joins are inner joins on party_id for the supplier/party objects and on user_id for FND_USER, meaning a publication row will only surface if a matching supplier, party, and user record exist.
Key Columns
- PUBLICATION_EVENT_ID — unique identifier for the publication event.
- VENDOR_ID, PARTY_ID — supplier and party identifiers used for downstream joins.
- SUPPLIER_NAME — alias for
HZ_PARTIES.PARTY_NAME. - REGISTRY_ID — alias for
HZ_PARTIES.PARTY_NUMBER. - SUPPLIER_NUMBER — alias for
AP_SUPPLIERS.SEGMENT1. - PUBLICATION_DATE — when the supplier was published.
- PUBLISHED_BY — the
USER_IDof the publisher. - PUBLISHED_BY_NAME — the resolved
FND_USER.USER_NAME; this is the column returned when querying "published_by_name". - PUBLISH_DETAIL — descriptive detail of the publication action.
- XMLCONTENT — the XML payload generated or transmitted for the event.
- REQUEST_ID and the standard audit columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN) support tracing and concurrency auditing.
Common Use Cases and Queries
Typical uses include auditing who published which supplier and when, monitoring publication activity by date range, and feeding integration or reconciliation reports. Because PUBLISHED_BY_NAME resolves the raw user id to a login, most user-facing queries select it directly.
SELECT supplier_name,
registry_id,
supplier_number,
publication_date,
published_by,
published_by_name,
publish_detail
FROM apps.pos_supp_pub_history_v
WHERE publication_date >= SYSDATE - 30
ORDER BY publication_date DESC;
To track a single publisher's activity:
SELECT publication_event_id,
supplier_name,
publication_date,
publish_detail
FROM apps.pos_supp_pub_history_v
WHERE published_by_name = :p_user_name;
For integration extracts, the XML payload is usually retrieved alongside the identifying columns:
SELECT publication_event_id,
supplier_number,
published_by_name,
xmlcontent
FROM apps.pos_supp_pub_history_v
WHERE request_id = :p_request_id;
As with all APPS views, access should be granted through the appropriate responsibility or via a custom grant, and queries returning XMLCONTENT should be filtered narrowly to avoid excessive payload volume.
-
VIEW: APPS.POS_SUPP_PUB_HISTORY_V
12.2.2
-
VIEW: APPS.POS_SUPP_PUB_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:POS.POS_SUPP_PUB_HISTORY_V, object_name:POS_SUPP_PUB_HISTORY_V, status:VALID,
-
VIEW: APPS.ASO_PVT_CUSTOMER_PER_FIND_V
12.1.1
-
VIEW: APPS.ASO_PVT_CUSTOMER_ORG_FIND_V
12.2.2
-
VIEW: APPS.ASO_PVT_CUSTOMER_ORG_FIND_V
12.1.1
-
VIEW: APPS.ASO_PVT_CUSTOMER_CONT_FIND_V
12.2.2
-
Lookup Type: IMC_PURGE_RADIO_CHOICE
12.1.1
product: IMC - Customers Online , meaning: Purge : Lookups for the Selection on Purge Creation Type ,
-
VIEW: APPS.ASO_PVT_CUSTOMER_PER_FIND_V
12.2.2
-
Lookup Type: IMC_PURGE_RADIO_CHOICE
12.2.2
product: IMC - Customers Online , meaning: Purge : Lookups for the Selection on Purge Creation Type ,
-
Lookup Type: PROF_ATTRI_SEARCH_CRITERIA
12.2.2
product: AR - Receivables , meaning: Profile Attribute Search Criteria , description: Profile Attribute Search Criteria ,
-
Lookup Type: PROF_ATTRI_SEARCH_CRITERIA
12.1.1
product: AR - Receivables , meaning: Profile Attribute Search Criteria , description: Profile Attribute Search Criteria ,
-
Lookup Type: EGO_CUST_SEARCH_LOOKUP
12.1.1
product: EGO - Advanced Product Catalog , meaning: Customer Search Context Lookup , description: Customer Search Context Lookup ,
-
View: POS_SUPP_PUB_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:POS.POS_SUPP_PUB_HISTORY_V, object_name:POS_SUPP_PUB_HISTORY_V, status:VALID, product: POS - iSupplier Portal , implementation_dba_data: APPS.POS_SUPP_PUB_HISTORY_V ,
-
VIEW: APPS.ASO_PVT_CUSTOMER_CONT_FIND_V
12.1.1
-
Lookup Type: EGO_CUST_SEARCH_LOOKUP
12.2.2
product: EGO - Advanced Product Catalog , meaning: Customer Search Context Lookup , description: Customer Search Context Lookup ,
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.1.1
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.2.2
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
PACKAGE: APPS.OE_ORDER_PUB
12.1.1
-
PACKAGE: APPS.OE_ORDER_PUB
12.2.2
-
eTRM - POS Tables and Views
12.2.2
description: This table is used during release 11i to release 12 upgrade. It stores vendor_ids of vendors who are considered in iSupplier Portal TCA Supplier upgrade scripts. ,
-
PACKAGE BODY: APPS.JTF_TERRITORY_PVT
12.2.2