I_PlmrCompositionNotRqdText
Polymer Composition not required - Text
I_PlmrCompositionNotRqdText is a Basic CDS View that provides data about "Polymer Composition not required - Text" in SAP S/4HANA. It reads from 1 data source (dd04t) and exposes 8 fields with key fields ABAPDataElement, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd04t | dd04t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Polymer Composition not required - Text | view | |
| AbapCatalog.sqlViewName | IPLMRNOTREQTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.representativeKey | ABAPDataElement | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABAPDataElement | dd04t | rollname | |
| KEY | Language | dd04t | ddlanguage | |
| ABAPDataElementDescription | dd04t | ddtext | ||
| ABAPDataElementHeading | dd04t | reptext | ||
| ABAPShortFieldLabel | dd04t | scrtext_s | ||
| ABAPMediumFieldLabel | dd04t | scrtext_m | ||
| ABAPLongFieldLabel | dd04t | scrtext_l | ||
| _Language | _Language |
@EndUserText.label: 'Polymer Composition not required - Text'
@AbapCatalog:
{
sqlViewName: 'IPLMRNOTREQTEXT',
compiler.compareFilter: true,
preserveKey: true
}
// authorization check not required as view only reads domain values
@AccessControl.authorizationCheck: #NOT_REQUIRED
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
dataCategory: #TEXT,
--Performance annotation
usageType:
{
dataClass: #META,
serviceQuality: #B,
sizeCategory: #L
},
representativeKey: 'ABAPDataElement'
}
define view I_PlmrCompositionNotRqdText
--Select data from dtel text
as select from dd04t
--association to I_Language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key dd04t.rollname as ABAPDataElement,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key dd04t.ddlanguage as Language,
@Semantics.text: true
dd04t.ddtext as ABAPDataElementDescription,
@Semantics.text: true
dd04t.reptext as ABAPDataElementHeading,
@Semantics.text: true
dd04t.scrtext_s as ABAPShortFieldLabel,
@Semantics.text: true
dd04t.scrtext_m as ABAPMediumFieldLabel,
@Semantics.text: true
dd04t.scrtext_l as ABAPLongFieldLabel,
/* Associations */
_Language
}
where
dd04t.rollname = 'EHFND_SUB_PCMPS_NOT_REQUIRED'
and dd04t.as4local = 'A'
and dd04t.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD04T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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