Deprecated
This CDS view is deprecated in S/4HANA. Use I_PlanExplosionText instead. View all deprecated CDS views →

C_Planexplosiontemptext

DDL: C_PLANEXPLOSIONTEMPTEXT SQL: CPLNEXPLOSNTEXT Type: view CONSUMPTION

Plan Explosion text view

C_Planexplosiontemptext is a Consumption CDS View that provides data about "Plan Explosion text view" in SAP S/4HANA. It reads from 1 data source (I_PlanExplosionText) and exposes 3 fields with key fields BOMTypeExplosionUsed, Language.

Data Sources (1)

SourceAliasJoin Type
I_PlanExplosionText I_PlanExplosionText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPLNEXPLOSNTEXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_PlanExplosionText view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BOMTypeExplosionUsed view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Plan Explosion text view view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BOMTypeExplosionUsed PlanExplosionType
KEY Language Language Report Text Language
PlanExplosionTypeDesc PlanExplosionTypeDesc

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 C_Planexplosiontemptext.
-- 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: CPLNEXPLOSNTEXT

CREATE VIEW C_Planexplosiontemptext AS
SELECT
  PlanExplosionType AS BOMTypeExplosionUsed,
  Language,
  PlanExplosionTypeDesc
FROM I_PlanExplosionText
;