R_ManagerWorkAssignmentName
Work Assignment Manager Name
R_ManagerWorkAssignmentName is a Composite CDS View that provides data about "Work Assignment Manager Name" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 3 fields with key field BPIdentificationNumber. Part of development package ODATA_CA_BUM_WF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessPartner | _BusinessPartner | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | BPIdentificationNumber | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Work Assignment Manager Name | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BPIdentificationNumber | _BuPaIdentification | BPIdentificationNumber | |
| BusinessPartner | _BuPaIdentification | BusinessPartner | ||
| PersonFullName | I_BusinessPartner | PersonFullName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey:'BPIdentificationNumber'
@Consumption.ranked:true
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@EndUserText.label: 'Work Assignment Manager Name'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MASTER
}
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view entity R_ManagerWorkAssignmentName
as select distinct from I_BuPaIdentification as _BuPaIdentification
inner join I_BusinessPartner as _BusinessPartner on _BusinessPartner.BusinessPartner = _BuPaIdentification.BusinessPartner
{
key _BuPaIdentification.BPIdentificationNumber,
_BuPaIdentification.BusinessPartner,
@Semantics.text
@EndUserText: { label: 'Full Name' }
_BusinessPartner.PersonFullName
}
where
_BuPaIdentification.BPIdentificationType = 'HCM033'
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