P_RSHResourceRoles

DDL: P_RSHRESOURCEROLES SQL: PRSHRESROLES Type: view COMPOSITE

P_RSHResourceRoles is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_RSHStaffingRequestSupplyData) and exposes 4 fields with key fields EmploymentInternalID, EngagementProjectResource.

Data Sources (1)

SourceAliasJoin Type
P_RSHStaffingRequestSupplyData P_RSHStaffingRequestSupplyData from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PRSHRESROLES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EmploymentInternalID EmploymentInternalID WorkForce Assgmt ID
KEY EngagementProjectResource EngagementProjectResource Resource ID
EngagementProjectResourceType EngagementProjectResourceType ResourceTypeID
_Role _Role

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 P_RSHResourceRoles.
-- 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.
-- SQL view name: PRSHRESROLES

CREATE VIEW P_RSHResourceRoles AS
SELECT
  EmploymentInternalID,
  EngagementProjectResource,
  EngagementProjectResourceType
FROM P_RSHStaffingRequestSupplyData
;