Search Results risk_rev_num




Overview

AMW.AMW_RISKS_B is the base table within the Oracle E-Business Suite (EBS) Enterprise Tax, Risk, and Compliance Management (ETRM) module that stores the master definition of a risk record. It resides in the AMW schema and is registered as FND Design Data object AMW.AMW_RISKS_B, with a status of VALID in both the 12.1.1 and 12.2.2 releases. As the designation "risk base table" implies, this object holds the language-independent, revision-controlled core attributes of a risk, while translatable text is deferred to a companion table. In a Data Vault modeling context, the table exhibits hub-leaning behavior: it anchors a stable RISK_REV_ID business key and is referenced by several downstream link and satellite-style objects, so it can reasonably be treated as a hub for risk revisions. The physical storage is allocated in the APPS_TS_TX_DATA tablespace with a PCT FREE of 10, and the unique index AMW_RISKS_B_U1 is placed in APPS_TS_TX_IDX.

Key Information Stored

The table contains 38 documented columns. The most significant include:

Common Use Cases and Queries

Typical usage centers on risk registers, impact-likelihood assessments, and approval reporting. A frequent query pattern retrieves the current approved revision:

SELECT r.RISK_ID, r.RISK_IMPACT, r.LIKELIHOOD, r.RISK_TYPE
FROM AMW.AMW_RISKS_B r
WHERE r.CURR_APPROVED_FLAG = 'Y' AND r.LATEST_REVISION_FLAG = 'Y';

To obtain the human-readable name of a risk, join to the translation table: AMW_RISKS_TL tl ON tl.RISK_REV_ID = r.RISK_REV_ID. For impact-scoring analyses, group by RISK_IMPACT or LIKELIHOOD. Because RISK_IMPACT and LIKELIHOOD are VARCHAR2(30) rather than numeric, reporting layers frequently map these codes to a lookup or value set before aggregation. The descriptive flexfield columns allow client-specific extensions to be surfaced in the same query without altering the base schema.

Related Objects

AMW_RISKS_B participates in a hub-leaning relationship set. The most significant related objects are:

  • AMW_RISKS_TL — references RISK_REV_ID and supplies translated risk text.
  • AMW_FIN_ITEM_ACC_RISK — links financial item accounts to a risk via RISK_REV_ID.
  • RCI_ORG_CERT_RISKS_F — the organization certification risk fact view/table, joined on RISK_REV_ID.
  • AMW_RISK_ASSOCIATIONS — associates risks with other entities through RISK_REV_ID.
  • AMW_RISK_TYPE — resolves risk type definitions against RISK_REV_ID.
  • FND_SECURITY_GROUPS — the referenced parent of SECURITY_GROUP_ID for hosted deployments.

These relationships confirm the table as the central anchor for risk-related certification, association, and financial mapping data across the ETRM data model.