PActivePlanningUnit

DDL: PACTIVEPLANNINGUNIT SQL: FCLMACTIVEPU Type: view

PActivePlanningUnit is a CDS View in SAP S/4HANA. It reads from 2 data sources (fclm_active_pu, fclm_lp_org_unit) and exposes 8 fields with key field PlanningUnit.

Data Sources (2)

SourceAliasJoin Type
fclm_active_pu active_pu inner
fclm_lp_org_unit pu_master from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FCLMACTIVEPU view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
AbapCatalog.compiler.compareFilter true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PlanningUnit fclm_lp_org_unit orgunit Planning Unit
Description fclm_lp_org_unit description Well Code Des.
AggregationCurrency fclm_lp_org_unit cv_curr Aggregation Currency
Performer fclm_lp_org_unit performer Planner
Reviewer fclm_lp_org_unit reviewer User Name
CompanyCode fclm_lp_org_unit company_code Company Code
PerformerTeam fclm_lp_org_unit performer_team Planner Team
ReviewerTeam fclm_lp_org_unit reviewer_team ReviewerTeam

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 PActivePlanningUnit.
-- 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: FCLMACTIVEPU

CREATE VIEW PActivePlanningUnit AS
SELECT
  pu_master.orgunit AS PlanningUnit,
  pu_master.description AS Description,
  pu_master.cv_curr AS AggregationCurrency,
  pu_master.performer AS Performer,
  pu_master.reviewer AS Reviewer,
  pu_master.company_code AS CompanyCode,
  pu_master.performer_team AS PerformerTeam,
  pu_master.reviewer_team AS ReviewerTeam
FROM fclm_lp_org_unit AS pu_master
INNER JOIN fclm_active_pu AS active_pu ON /* join condition not captured in parsed metadata */
;