S_POAuthUser

DDL: S_POAUTHUSER SQL: SPOAUTHUSER Type: view

User with PO Approval Authorization

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

Data Sources (3)

SourceAliasJoin Type
S_POAuthProfile S_POAuthProfile inner
S_POAuthProfile S_POAuthProfile inner
usrefus usrefus inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SPOAUTHUSER 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 PO 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_POAuthUser.
-- 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: SPOAUTHUSER

CREATE VIEW S_POAuthUser AS
SELECT
  _User.bname as UserID AS bnameasUserID
INNER JOIN S_POAuthProfile ON /* join condition not captured in parsed metadata */
INNER JOIN usrefus ON /* join condition not captured in parsed metadata */
;