C_ProductPlantTextInfo

DDL: C_PRODUCTPLANTTEXTINFO Type: view_entity CONSUMPTION Package: ODATA_PP_DD_REPL

Material Notes in DDMRP

C_ProductPlantTextInfo is a Consumption CDS View that provides data about "Material Notes in DDMRP" in SAP S/4HANA. It reads from 1 data source (I_Productplanttext) and exposes 5 fields with key fields Product, Plant, Language. Part of development package ODATA_PP_DD_REPL.

Data Sources (1)

SourceAliasJoin Type
I_Productplanttext _text from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Material Notes in DDMRP view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product Product
KEY Plant Plant
KEY Language
LongTextID LongTextID
LongText LongText
@AccessControl.authorizationCheck: #CHECK
@VDM: {
    viewType: #CONSUMPTION
}
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XXL, dataClass: #MIXED}
@EndUserText.label: 'Material Notes in DDMRP'
define view entity C_ProductPlantTextInfo
  as select from I_Productplanttext as _text
  //   inner join   t001w              as _t001w on _text.Plant = _t001w.werks

{
  key Product,
  key Plant,
  key upper(Language) as Language,
      //upper(_t001w.spras) as Language,

      LongTextID,
      LongText
}