I_PlanningLevel

DDL: I_PLANNINGLEVEL SQL: IPLANNINGLEVEL Type: view BASIC

Planning Level

I_PlanningLevel (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

CashFlowPlanningLevel · Financial Operations

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.

SAP Help Documentation

CategoryCDS Views for Cash and Liquidity Management
Data CategoryDimension
Purpose
This CDS view helps to show planning levels and source symbols. With this view, you can get planning levels and relevant texts, and you can also know the exact sources for planning levels. This CDS view provides the data to answer the following business questions: What are the planning levels and the sources? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization. Configuration You can configure planning levels with the configuration activity Define Planning Level in Finance Cash and Liquidity Management Cash Operations .

Structure
Fields Used for Filtering The main filters are as follows: PlanningLevel : This field is used to show planning levels. Important Fields Important fields in this view include the following: Field Name Description PlanningLevel Planning level PlanningLevelSourceSymbol Source symbol for planning level _Text Text for Planning level (text view for I_PlanningLevel)

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-CLM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t036 t036 from

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY PlanningLevel ebene Planning Level
PlanningLevelSourceSymbol orign Source Symbol
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_PlanningLevel.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IPLANNINGLEVEL

CREATE VIEW I_PlanningLevel AS
SELECT
  ebene AS PlanningLevel,
  orign AS PlanningLevelSourceSymbol
FROM t036
;