/APE/C_CheckActionAssignCust

DDL: /APE/C_CHECKACTIONASSIGNCUST Type: view CONSUMPTION

Check Action Assignment Customer

/APE/C_CheckActionAssignCust is a Consumption CDS View that provides data about "Check Action Assignment Customer" in SAP S/4HANA. It reads from 1 data source (/APE/I_CheckActionAssCust_TP) and exposes 4 fields with key fields config_key, ape_root_key. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckActionAssCust_TP /APE/I_CheckActionAssCust_TP from

Associations (2)

CardinalityTargetAliasCondition
[0..1] /APE/C_ExceptionID _ExceptionID $projection.exception_code_uuid = _ExceptionID.config_key
[0..1] /APE/I_CheckActionID_TP _CheckActionID $projection.action_code_uuid = _CheckActionID.config_key

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_VCHKACTAC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check Action Assignment Customer view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY config_key config_key Char
KEY ape_root_key ape_root_key
action_code _CheckActionID action_code Single-Character Flag
prst_status prst_status

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/C_CheckActionAssignCust.
-- 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/C_CheckActionAssignCust AS
SELECT
  config_key,
  ape_root_key,
  _CheckActionID.action_code AS action_code,
  prst_status
FROM /APE/I_CheckActionAssCust_TP
LEFT OUTER JOIN /APE/C_ExceptionID AS _ExceptionID ON exception_code_uuid = _ExceptionID.config_key  -- association [0..1]
LEFT OUTER JOIN /APE/I_CheckActionID_TP AS _CheckActionID ON action_code_uuid = _CheckActionID.config_key  -- association [0..1]
;