Search Results ams_act_logs




Overview

The AMS_ACT_LOGS table is a core data object within the Oracle E-Business Suite Marketing (AMS) module. It functions as a centralized repository for runtime transaction logs, capturing detailed execution data generated by various marketing processes. Its primary role is to provide an auditable trail and diagnostic information for troubleshooting and monitoring the performance and outcomes of automated marketing activities, such as list imports and campaign executions. This table is essential for system administrators and functional users to verify process completion, identify errors, and understand the sequence of events within complex marketing operations.

Key Information Stored

The table's structure is designed to capture comprehensive log entries. The primary key, ACTIVITY_LOG_ID, uniquely identifies each log record. A critical column is ACT_LOG_USED_BY_ID, which serves as a foreign key linking the log to the specific business object that generated it, such as a list or import job. While the full column list is not detailed in the provided metadata, typical columns in such a logging table would include timestamps (CREATION_DATE), a severity or message type indicator (e.g., LOG_LEVEL), a module or process name, a detailed message text (MESSAGE), and status codes. This structure allows for filtering logs by source, time, and severity.

Common Use Cases and Queries

A primary use case is diagnosing failures in marketing list management. For instance, if an import job in AMS_IMP_LIST_HEADERS_ALL fails, querying AMS_ACT_LOGS for related entries provides the error details. A common diagnostic query would join these tables using the ACT_LOG_USED_BY_ID.

  • Error Investigation: SELECT * FROM AMS.AMS_ACT_LOGS WHERE ACT_LOG_USED_BY_ID = <LIST_HEADER_ID> ORDER BY CREATION_DATE DESC;
  • Process Monitoring: Reports can be built to summarize log counts by type or source module over a given period to monitor system health.
  • Audit Compliance: The table supports audit requirements by providing an immutable record of system actions taken during key marketing transactions.

Related Objects

The AMS_ACT_LOGS table has defined foreign key relationships with two key marketing tables, as documented in the ETRM metadata. These relationships are pivotal for contextualizing log data.

  • AMS_IMP_LIST_HEADERS_ALL: Logs related to list import processes. Joined via AMS_ACT_LOGS.ACT_LOG_USED_BY_ID = AMS_IMP_LIST_HEADERS_ALL.LIST_HEADER_ID.
  • AMS_LIST_HEADERS_ALL: Logs related to general marketing list operations. Joined via AMS_ACT_LOGS.ACT_LOG_USED_BY_ID = AMS_LIST_HEADERS_ALL.LIST_HEADER_ID.

The shared foreign key column (ACT_LOG_USED_BY_ID) indicates that the table is designed to log activities for a polymorphic set of parent objects, with the specific context determined by the type of process being executed.

  • Table: AMS_ACT_LOGS 12.1.1

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_ACT_LOGS,  object_name:AMS_ACT_LOGS,  status:VALID,  product: AMS - Marketingdescription: Stores the runtime logs generated during transactions ,  implementation_dba_data: AMS.AMS_ACT_LOGS

  • Table: AMS_ACT_LOGS 12.2.2

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_ACT_LOGS,  object_name:AMS_ACT_LOGS,  status:VALID,  product: AMS - Marketingdescription: Stores the runtime logs generated during transactions ,  implementation_dba_data: AMS.AMS_ACT_LOGS

  • Table: AMS_LIST_HEADERS_ALL 12.1.1

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_LIST_HEADERS_ALL,  object_name:AMS_LIST_HEADERS_ALL,  status:VALID,  product: AMS - Marketingdescription: This table stores the name and other details about a target list. ,  implementation_dba_data: AMS.AMS_LIST_HEADERS_ALL

  • Table: AMS_LIST_HEADERS_ALL 12.2.2

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_LIST_HEADERS_ALL,  object_name:AMS_LIST_HEADERS_ALL,  status:VALID,  product: AMS - Marketingdescription: This table stores the name and other details about a target list. ,  implementation_dba_data: AMS.AMS_LIST_HEADERS_ALL

  • Table: AMS_IMP_LIST_HEADERS_ALL 12.2.2

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_IMP_LIST_HEADERS_ALL,  object_name:AMS_IMP_LIST_HEADERS_ALL,  status:VALID,  product: AMS - Marketingdescription: This table stores the user entered name and other details about lists imported into Oracle Marketing from external sources. ,  implementation_dba_data: AMS.AMS_IMP_LIST_HEADERS_ALL

  • Table: AMS_IMP_LIST_HEADERS_ALL 12.1.1

    owner:AMS,  object_type:TABLE,  fnd_design_data:AMS.AMS_IMP_LIST_HEADERS_ALL,  object_name:AMS_IMP_LIST_HEADERS_ALL,  status:VALID,  product: AMS - Marketingdescription: This table stores the user entered name and other details about lists imported into Oracle Marketing from external sources. ,  implementation_dba_data: AMS.AMS_IMP_LIST_HEADERS_ALL