I_ConfirmationCount

DDL: I_CONFIRMATIONCOUNT Type: view_entity BASIC

Confirmation Count

I_ConfirmationCount is a Basic CDS View (Dimension) that provides data about "Confirmation Count" in SAP S/4HANA. It reads from 1 data source (afru) and exposes 3 fields with key fields ConfirmationGroup, ConfirmationCount. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
afru afru from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ConfirmationGroup _ConfirmationGroup $projection.ConfirmationGroup = _ConfirmationGroup.ConfirmationGroup

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.technicalName ICONFCOUNT view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey ConfirmationCount view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Confirmation Count view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConfirmationGroup afru rueck Return Agmt
KEY ConfirmationCount afru rmzhl Counter
_ConfirmationGroup _ConfirmationGroup

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 I_ConfirmationCount.
-- 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 I_ConfirmationCount AS
SELECT
  afru.rueck AS ConfirmationGroup,
  afru.rmzhl AS ConfirmationCount
FROM afru
LEFT OUTER JOIN I_ConfirmationGroup AS _ConfirmationGroup ON ConfirmationGroup = _ConfirmationGroup.ConfirmationGroup  -- association [0..1]
;