SADL_V_AUNIT_INTERFACE_R

DDL: SADL_V_AUNIT_INTERFACE_R Type: view_entity

SADL_V_AUNIT_INTERFACE_R is a CDS View in SAP S/4HANA. It reads from 1 data source (snwd_so) and exposes 6 fields with key field NodeKey.

Data Sources (1)

SourceAliasJoin Type
snwd_so snwd_so from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.allowExtensions true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY NodeKey node_key Tree Model: Node Key
SoId so_id Sales Order ID
CreatedBy created_by Version Created By
CreatedAt created_at Uploaded On
ChangedBy changed_by User Name
ChangedAt changed_at Timestamp

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 SADL_V_AUNIT_INTERFACE_R.
-- 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 SADL_V_AUNIT_INTERFACE_R AS
SELECT
  node_key AS NodeKey,
  so_id AS SoId,
  created_by AS CreatedBy,
  created_at AS CreatedAt,
  changed_by AS ChangedBy,
  changed_at AS ChangedAt
FROM snwd_so
;