P_ComSDOpenBillingPlan
Sales Order Item Open Billing Plan
P_ComSDOpenBillingPlan is a Basic CDS View that provides data about "Sales Order Item Open Billing Plan" in SAP S/4HANA. It reads from 3 data sources (fpla, fplt, vbkd) and exposes 6 fields. Part of development package VDM_CPM_WS.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCOMSDBPOPEN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog.sqlViewName: 'PCOMSDBPOPEN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #BASIC
define view P_ComSDOpenBillingPlan as select from fpla
inner join fplt on fpla.fplnr = fplt.fplnr
inner join vbkd on fpla.fplnr = vbkd.fplnr
{
fpla.vbeln as SalesOrder,
vbkd.posnr as SalesOrderItem,
fplt.afdat as BillingDate,
fpla.fplnr as BillingPlan,
fplt.fpltr as BillingPlanItem,
fplt.fksaf as SDDocumentStatus
} where vbkd.posnr != '000000' and ( fplt.fksaf = 'A' or fplt.fksaf = 'B')
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA