SUIM_CHDOC_GET_ALL_ADR

DDL: SUIM_CHDOC_GET_ALL_ADR Type: view_entity

Get User Change Documents (All Types)

SUIM_CHDOC_GET_ALL_ADR is a CDS View that provides data about "Get User Change Documents (All Types)" in SAP S/4HANA. It reads from 1 data source (SUIM_CHDOC_GET_ALL) and exposes 24 fields with key fields bname, GivenName, FamilyName, WorkplaceDepartmentName, modda.

Data Sources (1)

SourceAliasJoin Type
SUIM_CHDOC_GET_ALL x from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Get User Change Documents (All Types) view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY bname SUIM_CHDOC_GET_ALL bname User name
KEY GivenName _a GivenName
KEY FamilyName _a FamilyName
KEY WorkplaceDepartmentName _a WorkplaceDepartmentName
KEY modda SUIM_CHDOC_GET_ALL modda Modification date
KEY modti SUIM_CHDOC_GET_ALL modti Modification time
KEY tstmp SUIM_CHDOC_GET_ALL tstmp Time Stamp
KEY modbe SUIM_CHDOC_GET_ALL modbe Changed By
KEY tabname SUIM_CHDOC_GET_ALL tabname Table/Constant Value
KEY fname SUIM_CHDOC_GET_ALL fname User
chngind SUIM_CHDOC_GET_ALL chngind Change Indicator
old_value SUIM_CHDOC_GET_ALL old_value Value
new_value SUIM_CHDOC_GET_ALL new_value Value
subsystem SUIM_CHDOC_GET_ALL subsystem Receiving sys.
from_dat SUIM_CHDOC_GET_ALL from_dat Start date
to_dat SUIM_CHDOC_GET_ALL to_dat End date
changenr SUIM_CHDOC_GET_ALL changenr Document Number
src_typ SUIM_CHDOC_GET_ALL src_typ
src_nam SUIM_CHDOC_GET_ALL src_nam
row_num SUIM_CHDOC_GET_ALL row_num
x_role SUIM_CHDOC_GET_ALL x_role
x_prof SUIM_CHDOC_GET_ALL x_prof
c_role SUIM_CHDOC_GET_ALL c_role
c_prof SUIM_CHDOC_GET_ALL c_prof

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_CHDOC_GET_ALL_ADR.
-- 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_CHDOC_GET_ALL_ADR AS
SELECT
  x.bname AS bname,
  _a.GivenName AS GivenName,
  _a.FamilyName AS FamilyName,
  _a.WorkplaceDepartmentName AS WorkplaceDepartmentName,
  x.modda AS modda,
  x.modti AS modti,
  x.tstmp AS tstmp,
  x.modbe AS modbe,
  x.tabname AS tabname,
  x.fname AS fname,
  x.chngind AS chngind,
  x.old_value AS old_value,
  x.new_value AS new_value,
  x.subsystem AS subsystem,
  x.from_dat AS from_dat,
  x.to_dat AS to_dat,
  x.changenr AS changenr,
  x.src_typ AS src_typ,
  x.src_nam AS src_nam,
  x.row_num AS row_num,
  x.x_role AS x_role,
  x.x_prof AS x_prof,
  x.c_role AS c_role,
  x.c_prof AS c_prof
FROM SUIM_CHDOC_GET_ALL AS x
;