I_WorkforcePersonKeyMap

DDL: I_WORKFORCEPERSONKEYMAP Type: view_entity BASIC

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.

Data Sources (1)

SourceAliasJoin Type
wfd_d_keymap wfd_d_keymap from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY WorkAssignment workforce_assgmt_id WorkForce Assgmt ID
WorkforcePersonID worker_id Worker ID
BusinessPartner business_partner_id Busn. Partner
WorkforcePersonExternalID person_id_external External Person ID
WorkforcePersonUserID user_id User Scope
CentralPerson central_person WorkForce Master ID
WorkAssignmentExternalID work_assignment_ext_id WFA Ext. ID
WorkforceBPModelType bp_model_type Workforceperson BP Model type
WorkAssignmentDataSource data_source Data Source
IsBlocked block_ind BlockingInd.

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_WorkforcePersonKeyMap.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_WorkforcePersonKeyMap AS
SELECT
  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,
  work_assignment_ext_id AS WorkAssignmentExternalID,
  bp_model_type AS WorkforceBPModelType,
  data_source AS WorkAssignmentDataSource,
  block_ind AS IsBlocked
FROM wfd_d_keymap
;