I_AgrmtPortionBlockingTypeText

DDL: I_AGRMTPORTIONBLOCKINGTYPETEXT Type: view BASIC Package: CMS_VDM

Agreement Portion Blocking Type - Text

I_AgrmtPortionBlockingTypeText is a Basic CDS View that provides data about "Agreement Portion Blocking Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, AgreementPortionBlockingType. It has 2 associations to related views. Part of development package CMS_VDM.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICAGPORBLKGTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality A view
ObjectModel.usageType.sizeCategory S view
ObjectModel.usageType.dataClass CUSTOMIZING view
ObjectModel.representativeKey AgreementPortionBlockingType view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Agreement Portion Blocking Type - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY AgreementPortionBlockingType
AgrmtPortionBlockingTypeText ddtext
_Language _Language
_AgreementPortionBlockingType _AgreementPortionBlockingType
@AbapCatalog:{
    sqlViewName: 'ICAGPORBLKGTXT',
    compiler.compareFilter: true,
    preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{
    dataCategory: #TEXT,
    usageType:{
        serviceQuality: 'A',
        sizeCategory: 'S',
        dataClass: 'CUSTOMIZING'
    },
    supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
                             #CDS_MODELING_ASSOCIATION_TARGET,
                             #SQL_DATA_SOURCE,
                             #CDS_MODELING_DATA_SOURCE,
                             #EXTRACTION_DATA_SOURCE ],
    representativeKey: 'AgreementPortionBlockingType'
}
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Agreement Portion Blocking Type - Text'
define view I_AgrmtPortionBlockingTypeText
  as select from dd07t
  association [0..1] to I_Language                     as _Language                     on $projection.Language = _Language.Language
  association [0..1] to I_AgreementPortionBlockingType as _AgreementPortionBlockingType on $projection.AgreementPortionBlockingType = _AgreementPortionBlockingType.AgreementPortionBlockingType
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key ddlanguage                                                                        as Language,
      @ObjectModel.foreignKey.association: '_AgreementPortionBlockingType'
  key cast(substring(domvalue_l, 1, 2) as cms_dte_ind_cag_por_blk_typ preserving type ) as AgreementPortionBlockingType,
      @Semantics.text: true
      ddtext                                                                            as AgrmtPortionBlockingTypeText,

      _Language,
      _AgreementPortionBlockingType
}
where
      dd07t.domname  = 'CMS_IND_BLK_TYP'
  and dd07t.as4local = 'A'