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
KEY ConfirmationCount afru rmzhl
_ConfirmationGroup _ConfirmationGroup
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@Analytics.technicalName: 'ICONFCOUNT'
@Metadata.allowExtensions: true
@ObjectModel.modelingPattern: #NONE
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.representativeKey: 'ConfirmationCount'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Confirmation Count'
// A basic view on the key fields of table AFRU,

// to be used for foreign-key associations only!

define view entity I_ConfirmationCount
  as select from afru
  association [0..1] to I_ConfirmationGroup as _ConfirmationGroup on $projection.ConfirmationGroup = _ConfirmationGroup.ConfirmationGroup
{ 
    // Key

    @ObjectModel.foreignKey.association: '_ConfirmationGroup'
    key afru.rueck as ConfirmationGroup,
    key afru.rmzhl as ConfirmationCount,
    
    // Association

   _ConfirmationGroup
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"AFRU"
],
"ASSOCIATED":
[
"I_CONFIRMATIONGROUP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/