Repm_Employeev2

DDL: REPM_EMPLOYEEV2 SQL: REPM_EV2 Type: view

Employee View

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

Data Sources (1)

SourceAliasJoin Type
SEPM_I_Employee_E Employee from

Annotations (6)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EmployeeID SEPM_I_Employee_E Employee Employee ID
LastNameasName Employee Names
_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_Employeev2.
-- 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_EV2

CREATE VIEW Repm_Employeev2 AS
SELECT
  Employee.Employee AS EmployeeID,
  replace (CONCAT(Employee.FirstName, CONCAT('% %',Employee.LastName )) , '%', '')as Name AS LastNameasName
FROM SEPM_I_Employee_E AS Employee
;