C_ProductPlantTextInfo
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Productplanttext | _text | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA