A_CnsldtnCustomerGroupT

DDL: A_CNSLDTNCUSTOMERGROUPT SQL: ACSCUSTGROUPT Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Customer Group Text

A_CnsldtnCustomerGroupT is a Composite CDS View that provides data about "Combined Customer Group Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnCustomerGroupT) and exposes 4 fields with key fields Language, CustomerGroup. It has 1 association to related views. Part of development package FIN_CS_MD_API.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnCustomerGroupT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnCustomerGroup _CnsldtnCustomerGroup $projection.CustomerGroup = _CnsldtnCustomerGroup.CustomerGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSCUSTGROUPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Customer Group Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name CustomerGroupText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnCustomerGroupT Language
KEY CustomerGroup I_CnsldtnCustomerGroupT CustomerGroup
CustomerGroupText
_CnsldtnCustomerGroup _CnsldtnCustomerGroup
@AbapCatalog.sqlViewName: 'ACSCUSTGROUPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Combined Customer Group Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #COMPOSITE
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: ['CustomerGroup']
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #C,
  sizeCategory: #L
}
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@OData.entitySet.name: 'CustomerGroupText'

define view A_CnsldtnCustomerGroupT
  as select from I_CnsldtnCustomerGroupT as _Source

  association [0..1] to A_CnsldtnCustomerGroup as _CnsldtnCustomerGroup on $projection.CustomerGroup = _CnsldtnCustomerGroup.CustomerGroup

{
      @Semantics.language: true
  key _Source.Language,

  key _Source.CustomerGroup,

      @Semantics.text: true
      cast(_Source.AdditionalMasterDataText as fincs_kdgrp_t preserving type) as CustomerGroupText,

      _CnsldtnCustomerGroup
}