P_RSHResourceSkilltags

DDL: P_RSHRESOURCESKILLTAGS SQL: PRSHRESSKILLS Type: view COMPOSITE

P_RSHResourceSkilltags is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_WorkforcePersonSkillTags) and exposes 5 fields with key field Person.

Data Sources (1)

SourceAliasJoin Type
I_WorkforcePersonSkillTags I_WorkforcePersonSkillTags from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PRSHRESSKILLS 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.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #CLIENT_DEPENDENT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Person Person Person/ Farm/ Field
EmployeeSkillTagID WorkforcePersonSkillTagID
EmployeeSkillTagType WorkforcePersonSkillTagType
EmployeeSkillTagName WorkforcePersonSkillTagName
AuthorizationGroup AuthorizationGroup AuthorizGroup

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_RSHResourceSkilltags.
-- 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: PRSHRESSKILLS

CREATE VIEW P_RSHResourceSkilltags AS
SELECT
  Person,
  WorkforcePersonSkillTagID AS EmployeeSkillTagID,
  WorkforcePersonSkillTagType AS EmployeeSkillTagType,
  WorkforcePersonSkillTagName AS EmployeeSkillTagName,
  AuthorizationGroup
FROM I_WorkforcePersonSkillTags
;