I_DfsMatlConditionMgmtText

DDL: I_DFSMATLCONDITIONMGMTTEXT SQL: IDFSMATCONDMGMTT Type: view BASIC

Defense Material Condition Management Text

I_DfsMatlConditionMgmtText is a Basic CDS View that provides data about "Defense Material Condition Management Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields DfsMatlConditionMgmt, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IDFSMATCONDMGMTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.type #SINGLE view
AbapCatalog.buffering.numberOfKeyFields 1 view
AbapCatalog.buffering.status #ACTIVE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Defense Material Condition Management Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DfsMatlConditionMgmt view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DfsMatlConditionMgmt
KEY Language dd07t ddlanguage
DfsMatlConditionMgmtName dd07t ddtext
_DfsMatlConditionMgmt _DfsMatlConditionMgmt
_Language _Language
@AbapCatalog.sqlViewName: 'IDFSMATCONDMGMTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.type: #SINGLE
@AbapCatalog.buffering.numberOfKeyFields: 1
@AbapCatalog.buffering.status: #ACTIVE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Defense Material Condition Management Text'

@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC

@ObjectModel : { dataCategory: #TEXT,
                 representativeKey: 'DfsMatlConditionMgmt',
                 usageType: { serviceQuality: #A,
                              sizeCategory:   #S,
                              dataClass:      #CUSTOMIZING} }
                              
define view I_DfsMatlConditionMgmtText
  as select from dd07t

  association [0..1] to I_DfsMatlConditionMgmt as _DfsMatlConditionMgmt on $projection.DfsMatlConditionMgmt = _DfsMatlConditionMgmt.DfsMatlConditionMgmt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast(dd07t.domvalue_l as dfps_mcond  ) as DfsMatlConditionMgmt,
  
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                       as Language,
  
      @Semantics.text:true
      dd07t.ddtext                           as DfsMatlConditionMgmtName,
      
      // association

      _DfsMatlConditionMgmt,
      _Language
}

where
      dd07t.domname      = 'DFPS_MCOND'
  and dd07t.as4local     = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_DFSMATLCONDITIONMGMT",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/