R_WorkAssignmentBP

DDL: R_WORKASSIGNMENTBP Type: view_entity COMPOSITE

Work assignment all models

R_WorkAssignmentBP is a Composite CDS View that provides data about "Work assignment all models" in SAP S/4HANA. It reads from 3 data sources (I_BuPaIdentification, R_WorkAssignmentKeyMap, R_WorkAssignmentKeyMap) and exposes 9 fields with key field WorkforceAssignment.

Data Sources (3)

SourceAliasJoin Type
I_BuPaIdentification _BuPaIdentification inner
R_WorkAssignmentKeyMap keymap from
R_WorkAssignmentKeyMap keymap union

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Work assignment all models view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY WorkforceAssignment R_WorkAssignmentKeyMap WorkforceAssignment WorkForce Assgmt ID
WorkforcePersonExternalID R_WorkAssignmentKeyMap WorkforcePersonExternalID External Person ID
BusinessPartner R_WorkAssignmentKeyMap BusinessPartner Issuing Authority
WorkAssignmentBusinessPartner I_BuPaIdentification BusinessPartner Issuing Authority
WorkforceAssignment WorkForce Assgmt ID
WorkforcePersonExternalID R_WorkAssignmentKeyMap WorkforcePersonExternalID External Person ID
BusinessPartner R_WorkAssignmentKeyMap BusinessPartner Issuing Authority
WorkAssignmentBusinessPartner R_WorkAssignmentKeyMap BusinessPartner Issuing Authority
BPRoleCategoryUsageCode

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 R_WorkAssignmentBP.
-- 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 R_WorkAssignmentBP AS
SELECT
  keymap.WorkforceAssignment AS WorkforceAssignment,
  keymap.WorkforcePersonExternalID AS WorkforcePersonExternalID,
  keymap.BusinessPartner AS BusinessPartner,
  _BuPaIdentification.BusinessPartner AS WorkAssignmentBusinessPartner,
  'B' AS BPRoleCategoryUsageCode
FROM R_WorkAssignmentKeyMap AS keymap
INNER JOIN I_BuPaIdentification AS _BuPaIdentification ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): R_WorkAssignmentKeyMap
;