R_ProjBillgReqObjectLinkTP
Project Billing Request Object Link
R_ProjBillgReqObjectLinkTP is a Transactional CDS View that provides data about "Project Billing Request Object Link" in SAP S/4HANA. It reads from 1 data source (I_ProjBillgReqObjectLink) and exposes 11 fields with key field ProjBillgReqObjectLinkUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjBillgReqObjectLink | ProjBillgReqObjectLink | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Project Billing Request Object Link | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjBillgReqObjectLinkUUID | I_ProjBillgReqObjectLink | ProjBillgReqObjectLinkUUID | |
| ProjectBillingRequestUUID | I_ProjBillgReqObjectLink | ProjectBillingRequestUUID | ||
| ReferencedObjectUUID | I_ProjBillgReqObjectLink | ReferencedObjectUUID | ||
| ReferenceObjectID | I_ProjBillgReqObjectLink | ReferenceObjectID | ||
| ObjectLinkType | I_ProjBillgReqObjectLink | ObjectLinkType | ||
| ProjBillgReqObjLinkCrtedByUsr | I_ProjBillgReqObjectLink | ProjBillgReqObjLinkCrtedByUsr | ||
| ProjBillgReqObjLinkCrtedDteTme | I_ProjBillgReqObjectLink | ProjBillgReqObjLinkCrtedDteTme | ||
| PrjBlgReqObjLinkLastChgdByUsr | I_ProjBillgReqObjectLink | PrjBlgReqObjLinkLastChgdByUsr | ||
| PrjBlgReqObjLinkLastChgDteTme | I_ProjBillgReqObjectLink | PrjBlgReqObjLinkLastChgDteTme | ||
| _ProjectBillingRequest | _ProjectBillingRequest | |||
| _ProjectBillingRequestTP | _ProjectBillingRequestTP |
//@AbapCatalog.sqlViewName: 'IPBROBJLINK'
//@AbapCatalog.compiler.compareFilter: true
//@AbapCatalog.preserveKey: true
@EndUserText.label: 'Project Billing Request Object Link'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType: {
sizeCategory: #L,
dataClass: #TRANSACTIONAL,
serviceQuality: #B
}
define view entity R_ProjBillgReqObjectLinkTP
as select from I_ProjBillgReqObjectLink as ProjBillgReqObjectLink
association to parent R_ProjectBillingRequestTP as _ProjectBillingRequestTP
on $projection.ProjectBillingRequestUUID = _ProjectBillingRequestTP.ProjectBillingRequestUUID
{
key ProjBillgReqObjectLink.ProjBillgReqObjectLinkUUID as ProjBillgReqObjectLinkUUID,
ProjBillgReqObjectLink.ProjectBillingRequestUUID as ProjectBillingRequestUUID,
ProjBillgReqObjectLink.ReferencedObjectUUID as ReferencedObjectUUID,
ProjBillgReqObjectLink.ReferenceObjectID as ReferenceObjectID,
ProjBillgReqObjectLink.ObjectLinkType as ObjectLinkType,
@Semantics.user.createdBy: true
ProjBillgReqObjectLink.ProjBillgReqObjLinkCrtedByUsr as ProjBillgReqObjLinkCrtedByUsr,
@Semantics.systemDateTime.createdAt: true
ProjBillgReqObjectLink.ProjBillgReqObjLinkCrtedDteTme as ProjBillgReqObjLinkCrtedDteTme,
@Semantics.user.lastChangedBy: true
ProjBillgReqObjectLink.PrjBlgReqObjLinkLastChgdByUsr as PrjBlgReqObjLinkLastChgdByUsr,
@Semantics.systemDateTime.lastChangedAt: true
ProjBillgReqObjectLink.PrjBlgReqObjLinkLastChgDteTme as PrjBlgReqObjLinkLastChgDteTme,
_ProjectBillingRequest,
_ProjectBillingRequestTP
}
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