SUIM_SECPOL_ATTR

DDL: SUIM_SECPOL_ATTR Type: view_entity

Attributs of SecPol

SUIM_SECPOL_ATTR is a CDS View that provides data about "Attributs of SecPol" in SAP S/4HANA. It reads from 2 data sources (sec_policy_attr, usr02) and exposes 2 fields with key field Bname.

Data Sources (2)

SourceAliasJoin Type
sec_policy_attr attr left_outer
usr02 usr from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Attributs of SecPol view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Bname usr02 bname User name
class usr02 class User Group

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_ATTR.
-- 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_ATTR AS
SELECT
  usr.bname AS Bname,
  usr.class AS class
FROM usr02 AS usr
LEFT OUTER JOIN sec_policy_attr AS attr ON /* join condition not captured in parsed metadata */
;