I_ComFPOpenBillingPlan

DDL: I_COMFPOPENBILLINGPLAN SQL: IFPOPNBP Type: view BASIC Package: VDM_CPM_WS

FP Open Billing Plan

I_ComFPOpenBillingPlan is a Basic CDS View that provides data about "FP Open Billing Plan" in SAP S/4HANA. It reads from 1 data source (P_Comfpopenbillingplan) and exposes 4 fields with key field SalesOrder. Part of development package VDM_CPM_WS.

Data Sources (1)

SourceAliasJoin Type
P_Comfpopenbillingplan FPBillingPlan from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IFPOPNBP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label FP Open Billing Plan view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder P_Comfpopenbillingplan SalesOrder SD Document
SalesOrderItem P_Comfpopenbillingplan SalesOrderItem Sales Order Item
BillingDate P_Comfpopenbillingplan BillingDate Billing Date
OrganizationDivision P_Comfpopenbillingplan OrganizationDivision Org. Division

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_ComFPOpenBillingPlan.
-- 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: IFPOPNBP

CREATE VIEW I_ComFPOpenBillingPlan AS
SELECT
  FPBillingPlan.SalesOrder AS SalesOrder,
  FPBillingPlan.SalesOrderItem AS SalesOrderItem,
  FPBillingPlan.BillingDate AS BillingDate,
  FPBillingPlan.OrganizationDivision AS OrganizationDivision
FROM P_Comfpopenbillingplan AS FPBillingPlan
;