S_SESAuthUser

DDL: S_SESAUTHUSER SQL: SSESAUTHUSER Type: view

User with SES Approval Authorization

S_SESAuthUser is a CDS View that provides data about "User with SES Approval Authorization" in SAP S/4HANA. It reads from 3 data sources (S_SESAuthProfilesToUsers, S_SESAuthProfilesToUsers, usrefus) and exposes 1 field.

Data Sources (3)

SourceAliasJoin Type
S_SESAuthProfilesToUsers S_SESAuthProfilesToUsers inner
S_SESAuthProfilesToUsers S_SESAuthProfilesToUsers inner
usrefus usrefus inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SSESAUTHUSER view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label User with SES Approval Authorization view

Fields (1)

KeyFieldSource TableSource FieldDescription
bnameasUserID

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 S_SESAuthUser.
-- 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: SSESAUTHUSER

CREATE VIEW S_SESAuthUser AS
SELECT
  usrbf2.bname as UserID AS bnameasUserID
INNER JOIN S_SESAuthProfilesToUsers ON /* join condition not captured in parsed metadata */
INNER JOIN usrefus ON /* join condition not captured in parsed metadata */
;