Search Results published_by_name
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.PA_CURR_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID,
-
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.PA_CURR_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID,
-
VIEW: APPS.PA_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID,
-
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: PA_CURR_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_V ,
-
VIEW: APPS.PA_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID,
-
VIEW: APPS.PA_PROJ_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID,
-
View: PA_CURR_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_V ,
-
View: PA_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROG_HIST_V ,
-
VIEW: APPS.PA_BACK_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID,
-
VIEW: APPS.PA_BACK_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID,
-
VIEW: APPS.PA_TASK_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID,
-
View: PA_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROG_HIST_V ,
-
VIEW: APPS.PA_PROJ_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID,
-
VIEW: APPS.PA_TASK_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID,
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID,
-
View: PA_TASK_ASSIGNMENTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view provides progress data for task assignments. , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_AMG_V ,
-
View: PA_TASK_ASSIGNMENTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view provides progress data for task assignments. , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_AMG_V ,
-
View: PA_PROJ_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
View: PA_PROJ_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
View: PA_TASK_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_V ,
-
View: PA_TASK_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_V ,
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_AMG_V
12.1.1
-
View: PA_BACK_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
View: PA_BACK_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_AMG_V
12.2.2
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID,
-
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. ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2