SEPM_I_User_E

DDL: SEPM_I_USER_E SQL: SEPM_IUSERE Type: view

EPM Demo: User with External IDs

SEPM_I_User_E is a CDS View that provides data about "EPM Demo: User with External IDs" in SAP S/4HANA. It reads from 1 data source (SEPM_I_User) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
SEPM_I_User SEPM_I_User from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName SEPM_IUSERE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label EPM Demo: User with External IDs view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID SEPM_I_User UserID User Name
UserDescription SEPM_I_User UserDescription Full 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 SEPM_I_User_E.
-- 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: SEPM_IUSERE

CREATE VIEW SEPM_I_User_E AS
SELECT
  SEPM_I_User.UserID AS UserID,
  SEPM_I_User.UserDescription AS UserDescription
FROM SEPM_I_User
;