I_MaterialPriceControlName

DDL: I_MATERIALPRICECONTROLNAME Type: view BASIC

Material Price Control Text

I_MaterialPriceControlName is a Basic CDS View (Text) 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 MaterialPriceControl, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (14)

NameValueLevelField
EndUserText.label Material Price Control Text view
Analytics.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIMPRCTRLT view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaterialPriceControl view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialPriceControl
KEY Language
MaterialPriceControlName
_Language _Language
@EndUserText.label: 'Material Price Control Text'
@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog: { sqlViewName: 'IFIMPRCTRLT', buffering.status: #NOT_ALLOWED }
@ObjectModel: { usageType: { sizeCategory: #L,
                             dataClass:  #MASTER,
                             serviceQuality: #A
                           },
                dataCategory: #TEXT,
                representativeKey: 'MaterialPriceControl'
              }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view I_MaterialPriceControlName
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key cast( domvalue_l as vprsv )                           as MaterialPriceControl,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( ddlanguage as spras )                           as Language,
      @Semantics.text: true
      cast(ddtext as fml_vprsv_text)                        as MaterialPriceControlName,

      _Language
}

where
      domname  = 'VPRSV'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/