I_PlanningLevel
Planning Level
I_PlanningLevel is a Basic CDS View (Dimension) that provides data about "Planning Level" in SAP S/4HANA. It reads from 1 data source (t036) and exposes 3 fields with key field PlanningLevel.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t036 | t036 | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Planning Level | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IPLANNINGLEVEL | view | |
| ObjectModel.representativeKey | PlanningLevel | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.sapObjectNodeType.name | CashFlowPlanningLevel | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PlanningLevel | ebene | ||
| PlanningLevelSourceSymbol | orign | |||
| _Text | _Text |
@EndUserText.label: 'Planning Level' //same as DDL description
@Analytics.dataCategory: #DIMENSION //or #CUBE or #FACT
@VDM.viewType: #BASIC
@Search.searchable: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IPLANNINGLEVEL' //must start with "I"
@ObjectModel.representativeKey: 'PlanningLevel'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #META
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.sapObjectNodeType.name:'CashFlowPlanningLevel'
@ObjectModel.supportedCapabilities:[ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern:[ #ANALYTICAL_CUBE ]
define view I_PlanningLevel //must start with "I_"; same as DDL source name in upper-camelcase notation
as select from t036
association[0..*] to I_PlanningLevelText as _Text on $projection.PlanningLevel = _Text.PlanningLevel
{
@Search.defaultSearchElement: true
@ObjectModel.text.association: '_Text'
key ebene as PlanningLevel,
//orign as ResourceSectionType, // add by Shiwei 2017.8.10
orign as PlanningLevelSourceSymbol,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T036"
],
"ASSOCIATED":
[
"I_PLANNINGLEVELTEXT"
],
"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