R_SrcgProjContributionForUser
Sourcing Project
R_SrcgProjContributionForUser is a Composite CDS View that provides data about "Sourcing Project" in SAP S/4HANA.
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Sourcing Project | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SourcingProjectUUID | Contact | SourcingProjectUUID | |
| UserID | Contact | UserID | ||
| BusinessPartnerUUID | Contact | BusinessPartnerUUID | ||
| SourcingProjectType | SP | SourcingProjectType | ||
| CompanyCode | SP | CompanyCode | ||
| PurchasingGroup | SP | PurchasingGroup | ||
| PurchasingOrganization | SP | PurchasingOrganization | ||
| MaterialGroup | SP | MaterialGroup |
@AccessControl: { authorizationCheck: #PRIVILEGED_ONLY,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@EndUserText.label: 'Sourcing Project'
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
lifecycle: {
contract: { type: #SAP_INTERNAL_API }
},
viewType: #COMPOSITE
}
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity R_SrcgProjContributionForUser
as select distinct from R_SourcingProjectContact as Contact
inner to one join R_SourcingProject as SP on SP.SourcingProjectUUID = Contact.SourcingProjectUUID
{
key Contact.SourcingProjectUUID,
Contact.UserID,
Contact.BusinessPartnerUUID,
SP.SourcingProjectType,
SP.CompanyCode,
SP.PurchasingGroup,
SP.PurchasingOrganization,
SP.MaterialGroup
} where Contact.SrcgProjContactIsContributor = 'X' and Contact.UserID = $session.user
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