snap_authorized

DDL: SNAP_AUTHORIZED SQL: SNAP_AUTH Type: view

SNAP restricted on authorization

snap_authorized is a CDS View that provides data about "SNAP restricted on authorization" in SAP S/4HANA. It reads from 3 data sources (snap_adt, snap, usr_attr_id) and exposes 16 fields with key fields datum, uzeit, ahost, uname, mandt.

Data Sources (3)

SourceAliasJoin Type
snap_adt a left_outer
snap s from
usr_attr_id u left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SNAP_AUTH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label SNAP restricted on authorization view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY datum snap datum Valid to
KEY uzeit snap uzeit Time
KEY ahost snap ahost App. Server
KEY uname snap uname User Name
KEY mandt snap mandt Editing Client
KEY modno snap modno Work Process Index
KEY seqno snap seqno Tab Seq. No.
xhold snap xhold Keep
flist snap flist char(200)
flist02 snap flist02 char(200)
flist03 snap flist03 char(200)
flist04 snap flist04 char(200)
flist05 snap flist05 char(200)
flist06 snap flist06 char(200)
flist07 snap flist07 char(200)
flist08 snap flist08 char(200)

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 snap_authorized.
-- 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: SNAP_AUTH

CREATE VIEW snap_authorized AS
SELECT
  s.datum AS datum,
  s.uzeit AS uzeit,
  s.ahost AS ahost,
  s.uname AS uname,
  s.mandt AS mandt,
  s.modno AS modno,
  s.seqno AS seqno,
  s.xhold AS xhold,
  s.flist AS flist,
  s.flist02 AS flist02,
  s.flist03 AS flist03,
  s.flist04 AS flist04,
  s.flist05 AS flist05,
  s.flist06 AS flist06,
  s.flist07 AS flist07,
  s.flist08 AS flist08
FROM snap AS s
LEFT OUTER JOIN snap_adt AS a ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN usr_attr_id AS u ON /* join condition not captured in parsed metadata */
;