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

I_BPAllData

DDL: I_BPALLDATA SQL: IBPALLDATA Type: view COMPOSITE

All Billing Plan Data

I_BPAllData is a Composite CDS View that provides data about "All Billing Plan Data" in SAP S/4HANA. It reads from 1 data source (I_Bpcpmdata) and exposes 50 fields with key fields BillingPlan, BillingPlanItem, SalesDocument, SalesDocumentItem, BillingPlanItem.

Data Sources (1)

SourceAliasJoin Type
I_Bpcpmdata I_Bpcpmdata from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPALLDATA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
EndUserText.label All Billing Plan Data view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.successor I_BPMasterProject view

Fields (50)

KeyFieldSource TableSource FieldDescription
KEY BillingPlan BillingPlan Bill. Plan No.
KEY BillingPlanItem Item
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
BillingDate BillingDate Billing Date
PostingDate PostingDate Posting Date for GR
PricingDate PricingDate Pricing Date
EventType EventType Event date type
BillingEventTypeName BillingEventTypeName
BillingPlanBillingDateText BillingPlanBillingDateText
SDDocumentStatus SDDocumentStatus
DocumentStatusName DocumentStatusName Status Text
DocumentStatusDesc DocumentStatusDesc
MaterialDesc MaterialDesc
MaterialName MaterialName Material Description
NetAmount NetAmount Stated Amount
MstrProjResourceQuantity MstrProjResourceQuantity
TransactionCurrency TransactionCurrency Transaction Currency
UnitOfMeasure UnitOfMeasure Unit Protected Qty
SoldToParty SoldToParty Sold-to Party
BillingBlockReason
BillingBlockReasonDescription
IsBillingCreatedInAdvance
BillingPlanCategoryName
BillingPlanRule
KEY BillingPlanItem BillingPlanItem Item
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
BillingDate BillingDate Billing Date
dats8asPostingDate
dats8asPricingDate
EventType EventType Event date type
BillingEventTypeName BillingEventTypeName
BillingPlanBillingDateText BillingPlanBillingDateText
SDDocumentStatus SDDocumentStatus
DocumentStatusName DocumentStatusName Status Text
DocumentStatusDesc DocumentStatusDesc
MaterialDesc
MaterialName Material Description
NetAmount NetAmount Stated Amount
MstrProjResourceQuantity
TransactionCurrency TransactionCurrency Transaction Currency
UnitOfMeasure Unit Protected Qty
SoldToParty Sold-to Party
BillingBlockReason BillingBlockReason
BillingBlockReasonDescription BillingBlockReasonDescription
IsBillingCreatedInAdvance IsBillingCreatedInAdvance
BillingPlanCategoryName BillingPlanCategoryName
BillingPlanRule BillingPlanRule
BillingPlanRuleName BillingPlanRuleName

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_BPAllData.
-- 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: IBPALLDATA

CREATE VIEW I_BPAllData AS
SELECT
  BillingPlan,
  cast(' ' as fpltr) AS BillingPlanItem,
  SalesDocument,
  SalesDocumentItem,
  BillingDate,
  PostingDate,
  PricingDate,
  EventType,
  BillingEventTypeName,
  BillingPlanBillingDateText,
  SDDocumentStatus,
  DocumentStatusName,
  DocumentStatusDesc,
  MaterialDesc,
  MaterialName,
  NetAmount,
  MstrProjResourceQuantity,
  TransactionCurrency,
  UnitOfMeasure,
  SoldToParty,
  cast('' as faksp) AS BillingBlockReason,
  cast('' as bezei_faksp) AS BillingBlockReasonDescription,
  cast('' as autte) AS IsBillingCreatedInAdvance,
  cast('' as ttbez) AS BillingPlanCategoryName,
  cast('' as fareg) AS BillingPlanRule,
  cast('00000000' as abap.dats(8))as PostingDate AS dats8asPostingDate,
  cast('00000000' as abap.dats(8))as PricingDate AS dats8asPricingDate,
  BillingPlanRuleName
FROM I_Bpcpmdata
;