S_RFQAUTHUSER

DDL: S_RFQAUTHUSER SQL: SRFQAUTHUSER Type: view

User with RFQ Approval Authorization

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

Data Sources (3)

SourceAliasJoin Type
S_RFQAUTHPROFILESTOUSERS S_RFQAUTHPROFILESTOUSERS inner
S_RFQAUTHPROFILESTOUSERS S_RFQAUTHPROFILESTOUSERS inner
usrefus usrefus inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SRFQAUTHUSER 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 RFQ 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_RFQAUTHUSER.
-- 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: SRFQAUTHUSER

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