SUIM_SECPOL_VIEW

DDL: SUIM_SECPOL_VIEW Type: view_entity

Get Profil Parameter for Users

SUIM_SECPOL_VIEW is a CDS View that provides data about "Get Profil Parameter for Users" in SAP S/4HANA. It reads from 2 data sources (SUIM_SECPOL_ATTR, usr02) and exposes 1 field with key field bname.

Data Sources (2)

SourceAliasJoin Type
SUIM_SECPOL_ATTR list from
usr02 usr left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Get Profil Parameter for Users view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY bname SUIM_SECPOL_ATTR Bname User name

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 SUIM_SECPOL_VIEW.
-- 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 SUIM_SECPOL_VIEW AS
SELECT
  list.Bname AS bname
FROM SUIM_SECPOL_ATTR AS list
LEFT OUTER JOIN usr02 AS usr ON /* join condition not captured in parsed metadata */
;