I_PlanningPackageText

DDL: I_PLANNINGPACKAGETEXT SQL: IPLNGPCKGTEXT Type: view BASIC

Planning Package text view

I_PlanningPackageText is a Basic CDS View that provides data about "Planning Package text view" in SAP S/4HANA. It reads from 1 data source (/sapapo/heupackt) and exposes 3 fields with key fields PlanningPackage, Language.

Data Sources (1)

SourceAliasJoin Type
/sapapo/heupackt /sapapo/heupackt from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPLNGPCKGTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PlanningPackage view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Planning Package text view view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PlanningPackage package_id Report Chain ID
KEY Language langu Primary lang.
PlanningPackageDesc text User Group

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_PlanningPackageText.
-- 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: IPLNGPCKGTEXT

CREATE VIEW I_PlanningPackageText AS
SELECT
  package_id AS PlanningPackage,
  langu AS Language,
  text AS PlanningPackageDesc
FROM /sapapo/heupackt
;