I_IntcoProjectBillingElement
Intercompany Project Billing Element
I_IntcoProjectBillingElement is a Basic CDS View that provides data about "Intercompany Project Billing Element" in SAP S/4HANA. It reads from 3 data sources (I_PrjBlgElmEntrJrnlEntrLink, I_ProjectBillingElement, I_ProjectBillingElementEntry) and exposes 11 fields. Part of development package FIN_CO_ICO_BILLING_TRACKER.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_PrjBlgElmEntrJrnlEntrLink | _PrjBlgElmEntrJrnlEntrLink | from |
| I_ProjectBillingElement | _ProjectBillingElement | inner |
| I_ProjectBillingElementEntry | _ProjectBillingElementEntry | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Intercompany Project Billing Element | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| Ledger | I_PrjBlgElmEntrJrnlEntrLink | Ledger | ||
| CompanyCode | I_PrjBlgElmEntrJrnlEntrLink | CompanyCode | ||
| FiscalYear | ||||
| AccountingDocument | I_PrjBlgElmEntrJrnlEntrLink | AccountingDocument | ||
| LedgerGLLineItem | I_PrjBlgElmEntrJrnlEntrLink | LedgerGLLineItem | ||
| ProjBillgElmntEntrItmUUID | I_PrjBlgElmEntrJrnlEntrLink | ProjBillgElmntEntrItmUUID | ||
| ProjectBillingCategory | I_ProjectBillingElement | ProjectBillingCategory | ||
| ProjBillingProfile | I_ProjectBillingElement | ProjBillingProfile | ||
| Material | I_ProjectBillingElementEntry | Material | ||
| ProjectBillingElementUUID | I_ProjectBillingElementEntry | ProjectBillingElementUUID | ||
| _ProjectBillingElement | I_ProjectBillingElementEntry | _ProjectBillingElement |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Intercompany Project Billing Element'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #REQUIRED
define view entity I_IntcoProjectBillingElement
as select from I_PrjBlgElmEntrJrnlEntrLink as _PrjBlgElmEntrJrnlEntrLink
inner join I_ProjectBillingElementEntry as _ProjectBillingElementEntry on _PrjBlgElmEntrJrnlEntrLink.ProjBillgElmntEntrItmUUID = _ProjectBillingElementEntry.ProjBillgElmntEntrItmUUID
inner join I_ProjectBillingElement as _ProjectBillingElement on _ProjectBillingElementEntry.ProjectBillingElementUUID = _ProjectBillingElement.ProjectBillingElementUUID
and _ProjectBillingElement.ProjectBillingCategory = 'ICBL'
and _ProjectBillingElement.ProjBillingProfile = 'ICOBLG001'
{
_PrjBlgElmEntrJrnlEntrLink.Ledger,
_PrjBlgElmEntrJrnlEntrLink.CompanyCode,
cast ( _PrjBlgElmEntrJrnlEntrLink.FiscalYear as fis_gjahr_no_conv ) as FiscalYear,
_PrjBlgElmEntrJrnlEntrLink.AccountingDocument,
_PrjBlgElmEntrJrnlEntrLink.LedgerGLLineItem,
_PrjBlgElmEntrJrnlEntrLink.ProjBillgElmntEntrItmUUID,
_ProjectBillingElement.ProjectBillingCategory,
_ProjectBillingElement.ProjBillingProfile,
_ProjectBillingElementEntry.Material,
_ProjectBillingElementEntry.ProjectBillingElementUUID,
_ProjectBillingElementEntry._ProjectBillingElement
}
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