PDdddlssrc

DDL: PDDDDLSSRC SQL: PDDDDLSRC1 Type: view BASIC

PDdddlssrc is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ddddlsrc) and exposes 9 fields with key fields ddlname, as4local.

Data Sources (1)

SourceAliasJoin Type
ddddlsrc ddddlsrc from

Annotations (8)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PDDDDLSRC1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
AbapCatalog.preserveKey true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ddlname ddlname DDL Source Name
KEY as4local as4local Activation State
as4user as4user Person Respons.
as4date as4date Date
as4time as4time Time
source source ViolationSource
parentname parentname Source Parent
actflag actflag DD: Flag for required actions
chgflag chgflag DD: What changes have been made

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 PDdddlssrc.
-- 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: PDDDDLSRC1

CREATE VIEW PDdddlssrc AS
SELECT
  ddlname,
  as4local,
  as4user,
  as4date,
  as4time,
  source,
  parentname,
  actflag,
  chgflag
FROM ddddlsrc
;