P_WorkforceKeyMapUser
P_WorkforceKeyMapUser is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (wfd_d_keymap) and exposes 5 fields with key field WorkforceAssignmentID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wfd_d_keymap | wfd_d_keymap | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PWRKFRCKEYMAPUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkforceAssignmentID | workforce_assgmt_id | ||
| WorkerId | worker_id | |||
| UserID | ||||
| PersonExternalID | person_id_external | |||
| U_PersonExtId |
@AbapCatalog.sqlViewName: 'PWRKFRCKEYMAPUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
//@EndUserText.label: 'converting User ID field from keymap table to upper case'
@VDM.viewType: #BASIC
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking:#BLOCKED_DATA_EXCLUDED
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.serviceQuality : #B
define view P_WorkforceKeyMapUser as select from wfd_d_keymap {
key workforce_assgmt_id as WorkforceAssignmentID,
worker_id as WorkerId,
upper( user_id ) as UserID,
person_id_external as PersonExternalID,
upper( person_id_external ) as U_PersonExtId
}
where block_ind = ' '
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