P_ActualPlanBalFlowSemtag

DDL: P_ACTUALPLANBALFLOWSEMTAG SQL: PFIACTPLNBFST Type: view COMPOSITE

P_ActualPlanBalFlowSemtag is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_SemTagGLAccount, P_ActualPlanBalFlow) and exposes 31 fields with key fields GLAccountHierarchy, ActualPlanCode, PlanningCategory, Ledger, CompanyCode.

Data Sources (2)

SourceAliasJoin Type
I_SemTagGLAccount I_SemTagGLAccount inner
P_ActualPlanBalFlow P_ActualPlanBalFlow from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PFIACTPLNBFST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (31)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy GLAccountHierarchy
KEY ActualPlanCode ActualPlanCode
KEY PlanningCategory PlanningCategory Plan Category
KEY Ledger Ledger Ledger
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYearPeriod FiscalYearPeriod Period/Year
KEY GLAccountFlowType GLAccountFlowType
FiscalYearVariant FiscalYearVariant FY Variant
LedgerFiscalYear LedgerFiscalYear
FiscalQuarter FiscalQuarter
FiscalYearQuarter FiscalYearQuarter
FiscalPeriod FiscalPeriod Tax period
PostingDate
ChartOfAccounts P_ActualPlanBalFlow ChartOfAccounts Node Class
GLAccount P_ActualPlanBalFlow GLAccount General Ledger
IsBalanceSheetAccount IsBalanceSheetAccount Is Balance Sheet Account
HierarchyNode HierarchyNode Node
SemanticTag SemanticTag Semantic Tag
ControllingArea ControllingArea Controlling Area
CostCenter CostCenter Cost Center
ProfitCenter ProfitCenter Profit Center
FunctionalArea FunctionalArea Sendr Fctl Area
BusinessArea BusinessArea Business Area
Segment Segment Segment number
Product Product Product Sold
Customer Customer Sold-to Party
Supplier Supplier Supplier
GlobalCurrency GlobalCurrency GM Billing Element: Global Currency
AmountInGlobalCurrency AmountInGlobalCurrency Amount in Global Currency
FixedAmountInGlobalCrcy FixedAmountInGlobalCrcy
_GlobalCurrency _GlobalCurrency

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 P_ActualPlanBalFlowSemtag.
-- 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: PFIACTPLNBFST

CREATE VIEW P_ActualPlanBalFlowSemtag AS
SELECT
  GLAccountHierarchy,
  ActualPlanCode,
  PlanningCategory,
  Ledger,
  CompanyCode,
  FiscalYearPeriod,
  GLAccountFlowType,
  FiscalYearVariant,
  LedgerFiscalYear,
  FiscalQuarter,
  FiscalYearQuarter,
  FiscalPeriod,
  cast( '00000000' as fis_budat) AS PostingDate,
  P_ActualPlanBalFlow.ChartOfAccounts AS ChartOfAccounts,
  P_ActualPlanBalFlow.GLAccount AS GLAccount,
  IsBalanceSheetAccount,
  HierarchyNode,
  SemanticTag,
  ControllingArea,
  CostCenter,
  ProfitCenter,
  FunctionalArea,
  BusinessArea,
  Segment,
  Product,
  Customer,
  Supplier,
  GlobalCurrency,
  AmountInGlobalCurrency,
  FixedAmountInGlobalCrcy
FROM P_ActualPlanBalFlow
INNER JOIN I_SemTagGLAccount ON /* join condition not captured in parsed metadata */
;