SEPMRA_C_ALP_User

DDL: SEPMRA_C_ALP_USER Type: view

User

SEPMRA_C_ALP_User is a CDS View that provides data about "User" in SAP S/4HANA. It reads from 1 data source (SEPMRA_I_Employee) and exposes 9 fields with key field UserId.

Data Sources (1)

SourceAliasJoin Type
SEPMRA_I_Employee User from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName SEPMRACALPEMP view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
UI.headerInfo.typeName User view
UI.headerInfo.typeNamePlural Userss view
UI.headerInfo.typeImageUrl sap-icon: imageUrl: view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value UserId view
UI.headerInfo.description.type #STANDARD view
UI.headerInfo.description.value FullName view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label User view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY UserId SystemUser
UserisareservedwordinCDSEmailAddress
Initials Initials Initials
FirstName FirstName First Name
MiddleName MiddleName Middle Name
LastName LastName Last Name
FullName FullName Name
MobilePhoneNumber MobilePhoneNumber Telephone
PhoneNumber PhoneNumber Telephone no.

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 SEPMRA_C_ALP_User.
-- 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.

CREATE VIEW SEPMRA_C_ALP_User AS
SELECT
  SystemUser AS UserId,
  Initials,
  FirstName,
  MiddleName,
  LastName,
  FullName,
  MobilePhoneNumber,
  PhoneNumber
FROM SEPMRA_I_Employee AS User
;