I_WorkforcePersonKeyMap
Keymapping for Worker
I_WorkforcePersonKeyMap is a Basic CDS View that provides data about "Keymapping for Worker" in SAP S/4HANA. It reads from 1 data source (wfd_d_keymap) and exposes 10 fields with key field WorkAssignment. Part of development package VDM_WFD_WORK_FORCE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wfd_d_keymap | wfd_d_keymap | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Keymapping for Worker | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkAssignment | workforce_assgmt_id | ||
| WorkforcePersonID | worker_id | |||
| BusinessPartner | business_partner_id | |||
| WorkforcePersonExternalID | person_id_external | |||
| WorkforcePersonUserID | user_id | |||
| CentralPerson | central_person | |||
| WorkAssignmentExternalID | ||||
| WorkforceBPModelType | bp_model_type | |||
| WorkAssignmentDataSource | data_source | |||
| IsBlocked | block_ind |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Keymapping for Worker'
@Metadata.ignorePropagatedAnnotations: true
@VDM:{
viewType:#BASIC,
lifecycle.contract.type:#SAP_INTERNAL_API
}
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XL,
dataClass: #MIXED
}
//............................................................................................................................
// This CDS view is meant for private consumption in Worker Overview ONLY ---- Do not use it for for other applications
//............................................................................................................................
define view entity I_WorkforcePersonKeyMap
as select from wfd_d_keymap
{
key workforce_assgmt_id as WorkAssignment,
worker_id as WorkforcePersonID,
business_partner_id as BusinessPartner,
person_id_external as WorkforcePersonExternalID,
user_id as WorkforcePersonUserID,
central_person as CentralPerson,
cast(user_id as wfd_assgmt_ext_id preserving type ) as WorkAssignmentExternalID,
bp_model_type as WorkforceBPModelType,
data_source as WorkAssignmentDataSource,
block_ind as IsBlocked
}
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