REPM_EmployeeV1

DDL: REPM_EMPLOYEEV1 SQL: REPM_EV1 Type: view

Employee View

REPM_EmployeeV1 is a CDS View of category Dimension that provides data about "Employee View" in SAP S/4HANA. It reads from 1 data source (snwd_employees) and exposes 3 fields with key field EmployeeGUIID.

Data Sources (1)

SourceAliasJoin Type
snwd_employees Employee from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName REPM_EV1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Employee View view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey EmployeeGUIID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EmployeeGUIID snwd_employees node_key Tree Model: Node Key
last_nameasName Employee Name
_EmployeeText _EmployeeText

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 REPM_EmployeeV1.
-- 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: REPM_EV1

CREATE VIEW REPM_EmployeeV1 AS
SELECT
  Employee.node_key AS EmployeeGUIID,
  replace (CONCAT(Employee.first_name, CONCAT('% %',Employee.last_name )) , '%', '')as Name AS last_nameasName
FROM snwd_employees AS Employee
;