Search Results export_data




Overview

AMS_EXP_LIST_HEADERS_VL is a translated (VL) view in the Oracle Marketing (AMS) module of Oracle E-Business Suite. It presents the header-level definition of export lists — the reusable export configurations that drive the Marketing module's list export functionality. Each row represents one export list header, combining language-independent attributes from the base table with the translated display name from the translation table. The view exposes descriptive metadata such as the export type, owner, lifecycle status, version, and security group, alongside execution-related attributes including request identifiers, generated SQL, recurrence settings, and the EXPORT_DATA column referenced in the user's search.

Because it is a VL view, AMS_EXP_LIST_HEADERS_VL automatically filters translated rows by the session language via USERENV('LANG'), returning a single localized name per header. This makes it the appropriate source for reports, concurrent programs, and integration extracts that need user-facing export list names rather than internal identifiers.

Underlying Base Objects

The view is defined over two documented base objects:

The join is on EXPORT_LIST_HEADER_ID, restricted by ILT.LANGUAGE = USERENV('LANG'). The ETRM metadata notes "Not implemented in this database" for the documented instance, and no owner was recorded. In a functioning 12.1.1 or 12.2.2 environment, the view resides in the AMS (or APPS) schema and is granted to APPS for reporting and concurrent processing.

Key Columns

Common Use Cases and Queries

Typical uses include reporting on export lists and their status, replicating or auditing export configurations, tracing a concurrent request to its export list, and extracting the EXPORT_DATA payload for migration or analysis.

  • List active export headers by owner and status.
  • Retrieve the EXPORT_DATA and FINAL_SQL_STRING for a specific header.
  • Identify recurring export schedules and canceled exports.
  • Reconcile headers to concurrent requests via REQUEST_ID.

Sample query:

SELECT h.EXPORT_LIST_HEADER_ID,
       h.NAME,
       h.EXPORT_TYPE,
       h.STATUS_CODE,
       h.OWNER_USER_ID,
       h.REQUEST_ID,
       h.REPEAT_MODE,
       h.EXPORT_DATA
FROM   AMS_EXP_LIST_HEADERS_VL h
WHERE  h.STATUS_CODE = 'ACTIVE'
ORDER  BY h.LAST_UPDATE_DATE DESC;

Because the view is language-sensitive, query results reflect the language of the connected session, and the NAME value may change accordingly.