C_ProductPlantTextInfo

DDL: C_PRODUCTPLANTTEXTINFO SQL: CPRODPLNTTXTIF Type: view CONSUMPTION

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.

Data Sources (1)

SourceAliasJoin Type
I_Productplanttext _text from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CPRODPLNTTXTIF view
AbapCatalog.compiler.compareFilter true view
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
@AbapCatalog.sqlViewName: 'CPRODPLNTTXTIF'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM: {
    viewType: #CONSUMPTION
}
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XXL, dataClass: #MIXED}
@EndUserText.label: 'Material Notes in DDMRP'
define view 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCTPLANTTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/