C_ProjectBillingDocDetails
Billing Document Details
C_ProjectBillingDocDetails is a Consumption CDS View that provides data about "Billing Document Details" in SAP S/4HANA. It reads from 1 data source (I_ProjectBillingDocDetails) and exposes 7 fields with key fields BillingDocument, WBSElementInternalID. It is exposed through 5 OData services (MANAGEPROJBILLGREQUEST_SD, PROJECTBILLINGELEMENT_SD, PROJECTBILLINGREQUEST_SD, ...). Part of development package VDM_PROJECTBILLINGELEMENT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectBillingDocDetails | I_ProjectBillingDocDetails | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Billing Document Details | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
OData Services (5)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| MANAGEPROJBILLGREQUEST_SD | UI_MNGPROJBILLGREQ_SB_V2 | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
| PROJECTBILLINGELEMENT_SD | UI_PROJBILLGELMNT_SB_V2 | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
| PROJECTBILLINGREQUEST_SD | UI_PROJBILLGREQUEST_SB_V2 | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
| UI_PROJECTBILLINGELEMENT | UI_PROJECTBILLINGELEMENT | V4 | C1 | NOT_RELEASED |
| UI_PROJECTBILLINGREQUEST | UI_PROJECTBILLINGREQUEST | V4 | C1 | NOT_RELEASED |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillingDocument | BillingDocument | ||
| KEY | WBSElementInternalID | WBSElementInternalID | ||
| TransactionCurrency | TransactionCurrency | |||
| TotalNetAmount | TotalNetAmount | |||
| BillingDocumentDate | BillingDocumentDate | |||
| SDDocumentCategory | SDDocumentCategory | |||
| SDDocumentCategoryName | SDDocumentCategoryName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Billing Document Details'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #M,
dataClass: #TRANSACTIONAL
}
define view entity C_ProjectBillingDocDetails as select from I_ProjectBillingDocDetails
{
key BillingDocument,
key WBSElementInternalID,
TransactionCurrency,
@Semantics: { amount : {currencyCode: 'TransactionCurrency'} }
TotalNetAmount,
BillingDocumentDate,
SDDocumentCategory,
SDDocumentCategoryName
}
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