R_WorkAssignmentKeyMapOldModel

DDL: R_WORKASSIGNMENTKEYMAPOLDMODEL Type: view_entity COMPOSITE Package: ODATA_CA_BUM_WF

Multi Work Assignments on Old Model

R_WorkAssignmentKeyMapOldModel is a Composite CDS View that provides data about "Multi Work Assignments on Old Model" in SAP S/4HANA. It reads from 1 data source (R_WorkAssignmentKeyMap) and exposes 2 fields with key field BusinessPartner. Part of development package ODATA_CA_BUM_WF.

Data Sources (1)

SourceAliasJoin Type
R_WorkAssignmentKeyMap R_WorkAssignmentKeyMap from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED 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 #XL view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Multi Work Assignments on Old Model view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
NumberOfWorkAssignments

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_WorkAssignmentKeyMapOldModel.
-- 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_WorkAssignmentKeyMapOldModel AS
SELECT
  BusinessPartner,
  count(*) AS NumberOfWorkAssignments
FROM R_WorkAssignmentKeyMap
;