ESH_S_WORKPRSNSEARCH

DDL: ESH_S_WORKPRSNSEARCH SQL: ESH_U_WRKPRSNSRH Type: view

ESH_S_WORKPRSNSEARCH is a CDS View in SAP S/4HANA. It reads from 1 data source (ESH_N_WORKPRSNSEARCH) and exposes 6 fields with key field EMPLOYEEINTERNALID.

Data Sources (1)

SourceAliasJoin Type
ESH_N_WORKPRSNSEARCH ESH_N_WORKPRSNSEARCH from

Annotations (18)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AbapCatalog.preserveKey true view
ObjectModel.modelingPattern #ENTERPRISE_SEARCH_PROVIDER view
Metadata.allowExtensions true view
Search.searchable true view
EnterpriseSearch.enabled true view
UI.headerInfo.typeName Employee-Workforce(Deprecated) view
UI.headerInfo.typeNamePlural Employee-Workforce(Deprecated) view
Consumption.semanticObject WorkforcePerson view
Metadata.ignorePropagatedAnnotations true view
UI.headerInfo.title.value EMPLOYEE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ESH_U_WRKPRSNSRH view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EMPLOYEEINTERNALID EMPLOYEEINTERNALID Busn. Partner
EMPLOYEE EMPLOYEE Object ID
EMPLOYEEFULLNAME EMPLOYEEFULLNAME
EMPLOYEESKILLTAGNAME EMPLOYEESKILLTAGNAME
FIRSTNAME FIRSTNAME First Name
LASTNAME LASTNAME Last Name

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 ESH_S_WORKPRSNSEARCH.
-- 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: ESH_U_WRKPRSNSRH

CREATE VIEW ESH_S_WORKPRSNSEARCH AS
SELECT
  EMPLOYEEINTERNALID,
  EMPLOYEE,
  EMPLOYEEFULLNAME,
  EMPLOYEESKILLTAGNAME,
  FIRSTNAME,
  LASTNAME
FROM ESH_N_WORKPRSNSEARCH
;