S_SrcgProjAuthznUser

DDL: S_SRCGPROJAUTHZNUSER SQL: SPAUTHUSER Type: view

User with Sourcing Project Auth

S_SrcgProjAuthznUser is a CDS View that provides data about "User with Sourcing Project Auth" in SAP S/4HANA. It reads from 3 data sources (S_SrcgProjAuthPrflToUsers, S_SrcgProjAuthPrflToUsers, usrefus) and exposes 1 field.

Data Sources (3)

SourceAliasJoin Type
S_SrcgProjAuthPrflToUsers S_SrcgProjAuthPrflToUsers inner
S_SrcgProjAuthPrflToUsers S_SrcgProjAuthPrflToUsers inner
usrefus usrefus inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SPAUTHUSER 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 Sourcing Project Auth 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_SrcgProjAuthznUser.
-- 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: SPAUTHUSER

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