I_CollectionsStrategyText

DDL: I_COLLECTIONSSTRATEGYTEXT Type: view BASIC Package: UDM_COLL_CDS

Collections Strategy Text

I_CollectionsStrategyText is a Basic CDS View that provides data about "Collections Strategy Text" in SAP S/4HANA. It reads from 1 data source (udm_strategyt) and exposes 4 fields with key fields Language, CollectionStrategy. It has 1 association to related views. Part of development package UDM_COLL_CDS.

Data Sources (1)

SourceAliasJoin Type
udm_strategyt udm_strategyt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICOLLSSTRATTX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Collections Strategy Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey CollectionStrategy view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language language
KEY CollectionStrategy coll_strategy
CollStrgyName strategy_txt
_Language _Language
@AbapCatalog: { sqlViewName: 'ICOLLSSTRATTX',
                compiler: { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK,
                  personalData:       { blocking: #BLOCKED_DATA_EXCLUDED } }
@EndUserText: { label: 'Collections Strategy Text' }
@VDM: { viewType: #BASIC,
        lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #A,
                             sizeCategory: #L,
                             dataClass: #CUSTOMIZING },
                semanticKey: [ 'CollectionStrategy' ],
                representativeKey: 'CollectionStrategy' }

define view I_CollectionsStrategyText
  as select from udm_strategyt

  // VDM Associations

  // Language

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{

      // VDM Fields

      @Semantics: { language: true }
      @ObjectModel: { foreignKey: { association: '_Language' } }
  key language      as Language,

  key coll_strategy as CollectionStrategy,

      @Semantics: { text: true }
      strategy_txt  as CollStrgyName,

      // Exposed Associations

      _Language

}