C_MatlPriceCntrlTextTemp

DDL: C_MATLPRICECNTRLTEXTTEMP SQL: CMATPRCCNTROLT Type: view CONSUMPTION

Material Price Control Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

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

Fields (4)

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

@VDM:{
  viewType: #CONSUMPTION,
  lifecycle: {
    status: #DEPRECATED,
    successor: 'I_ProdValnPriceControlText'
  }
}
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'InventoryValuationProcedure'
@EndUserText.label: 'Material Price Control Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
define view C_MatlPriceCntrlTextTemp
  as select from dd07t
{
      --key dd07t.domname,

  key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as inventoryvaluationprocedure) as InventoryValuationProcedure,
      //    @Search.defaultSearchElement: true

      //    @Search.fuzzinessThreshold: 0.8

      //    @Search.ranking: #HIGH

      @Semantics.language:true
  key cast( ddlanguage as spras )                                                                   as Language,
      //    @Search.defaultSearchElement: true

      //    @Search.fuzzinessThreshold: 0.8

      //    @Search.ranking: #HIGH

      @Semantics.text: true
      cast ( substring ( ddtext, 1, 60 ) as val_text )                                              as Name
}
where
  domname = 'VPRSV'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/