C_MatlPrDetCtrlTextTemp

DDL: C_MATLPRDETCTRLTEXTTEMP SQL: CMATPRODCTRT Type: view CONSUMPTION

Material Price Detr. Text

C_MatlPrDetCtrlTextTemp is a Consumption CDS View that provides data about "Material Price Detr. Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields PriceDeterminationControl, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMATPRODCTRT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_PriceDeterminationControlTxt view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PriceDeterminationControl view
EndUserText.label Material Price Detr. Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PriceDeterminationControl
KEY Language
Name
@AbapCatalog.sqlViewName: 'CMATPRODCTRT'
@ObjectModel.dataCategory: #TEXT
//@Analytics: { datacategory: #TEXT }

@VDM:{
  viewType: #CONSUMPTION,
  lifecycle: {
    status: #DEPRECATED,
    successor: 'I_PriceDeterminationControlTxt'
  }
}
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'PriceDeterminationControl'
@EndUserText.label: 'Material Price Detr. Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER


define view C_MatlPrDetCtrlTextTemp
  as select from dd07t
{
  key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as pricedeterminationcontrol) as PriceDeterminationControl,
      @Semantics.language:true
  key cast( ddlanguage as spras )                                                                 as Language,
      @Semantics.text: true
      cast ( substring ( ddtext, 1, 60 ) as val_text )                                            as Name
}
where
  domname = 'CK_ML_ABST'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/