I_PlanExplosionText
Plan Explosion text view
I_PlanExplosionText is a Basic CDS View that provides data about "Plan Explosion text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, PlanExplosionType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PlanExplosion | _PlanExplosionType | $projection.PlanExplosionType = _PlanExplosionType.PlanExplosionType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPLANEXPLOSNTEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PlanExplosionType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| EndUserText.label | Plan Explosion text view | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | PlanExplosionType | |||
| DomainValue | dd07t | domvalue_l | ||
| PlanExplosionTypeDesc | ||||
| _PlanExplosionType | _PlanExplosionType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPLANEXPLOSNTEXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PlanExplosionType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #META
@EndUserText.label: 'Plan Explosion text view'
define view I_PlanExplosionText
as select from dd07t
association [1..1] to I_PlanExplosion as _PlanExplosionType on $projection.PlanExplosionType = _PlanExplosionType.PlanExplosionType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_PlanExplosionType'
@ObjectModel.text.element: ['PlanExplosionTypeDesc']
key cast (dd07t.domvalue_l as /sapapo/whatbom ) as PlanExplosionType,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
cast (ddtext as val_text preserving type ) as PlanExplosionTypeDesc,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
#TO_COMPOSITION_ROOT]
_PlanExplosionType,
_Language
}
where
domname = '/SAPAPO/WHATBOM'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PLANEXPLOSION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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