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

I_ComSDOpenBillingPlan

DDL: I_COMSDOPENBILLINGPLAN SQL: ICOMSDBPOPEN Type: view BASIC

Sales Order Item Open Billing Plans

I_ComSDOpenBillingPlan is a Basic CDS View that provides data about "Sales Order Item Open Billing Plans" in SAP S/4HANA. It reads from 3 data sources (fpla, fplt, vbkd) and exposes 3 fields.

Data Sources (3)

SourceAliasJoin Type
fpla fpla from
fplt fplt inner
vbkd vbkd inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICOMSDBPOPEN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Order Item Open Billing Plans view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_SlsDocItemBillingPlan view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
SalesOrder fpla vbeln SD Sched. Agmt
SalesOrderItem vbkd posnr WBS Element
BillingDate fplt afdat Conf.req.date

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_ComSDOpenBillingPlan.
-- 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: ICOMSDBPOPEN

CREATE VIEW I_ComSDOpenBillingPlan AS
SELECT
  fpla.vbeln AS SalesOrder,
  vbkd.posnr AS SalesOrderItem,
  fplt.afdat AS BillingDate
FROM fpla
INNER JOIN fplt ON /* join condition not captured in parsed metadata */
INNER JOIN vbkd ON /* join condition not captured in parsed metadata */
;