/APE/I_ExceptionLinkBO_TP

DDL: /APE/I_EXCEPTIONLINKBO_TP Type: view TRANSACTIONAL

Exception Linked BO

/APE/I_ExceptionLinkBO_TP is a Transactional CDS View that provides data about "Exception Linked BO" in SAP S/4HANA. It reads from 1 data source (/APE/I_ExceptionLinkBO) and exposes 7 fields with key field db_key. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ExceptionLinkBO /APE/I_ExceptionLinkBO from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/I_ExceptionHeader_TP _ExcpHdr $projection.parent_key = _ExcpHdr.db_key
[1..1] /APE/I_BusObjType_TP _BOType $projection.bo_type_uuid = _BOType.config_key

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_EXCPLINK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Exception Linked BO view
ObjectModel.writeActivePersistence /APE/EXCP_LINKBO view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY db_key db_key UUID
parent_key parent_key UUID
bo_type_uuid bo_type_uuid
bo_type _BOType bo_type SOT Name
bo_uuid bo_uuid
_dataaging _dataaging Data Aging
_ExcpHdr _ExcpHdr

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view /APE/I_ExceptionLinkBO_TP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW /APE/I_ExceptionLinkBO_TP AS
SELECT
  db_key,
  parent_key,
  bo_type_uuid,
  _BOType.bo_type AS bo_type,
  bo_uuid
FROM /APE/I_ExceptionLinkBO
LEFT OUTER JOIN /APE/I_ExceptionHeader_TP AS _ExcpHdr ON parent_key = _ExcpHdr.db_key  -- association [1..1]
LEFT OUTER JOIN /APE/I_BusObjType_TP AS _BOType ON bo_type_uuid = _BOType.config_key  -- association [1..1]
;