dhamb_base_dp_table

DDL: DHAMB_BASE_DP_TABLE Type: view_entity

DI meta data browser: list of DDIC tables

dhamb_base_dp_table is a CDS View that provides data about "DI meta data browser: list of DDIC tables" in SAP S/4HANA. It reads from 7 data sources and exposes 11 fields.

Data Sources (7)

SourceAliasJoin Type
dd02l dd02l inner
dd02t dd02t left_outer
dd09l dd09l left_outer
df14l df14l left_outer
df14t df14t left_outer
tadir tadir from
tdevc tdevc inner

Parameters (1)

NameTypeDefault
iv_langu abap.lang

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label DI meta data browser: list of DDIC tables view

Fields (11)

KeyFieldSource TableSource FieldDescription
objectname dd02l tabname Table/Constant Value
clidep dd02l clidep Client-specific
objectdescr dd02t ddtext Short text
contflag dd02l contflag Delivery class
tabart dd09l tabart Data Class
devclass tadir devclass Package (Obsolete)
component df14l ps_posid WBS Element
compdescr df14t name Zone name
component_id tdevc component Softw. Comp.
dlvunit tdevc dlvunit Softw. Comp.
lastchange

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 dhamb_base_dp_table.
-- 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.
-- Parameters: iv_langu : abap.lang

CREATE VIEW dhamb_base_dp_table AS
SELECT
  dd02l.tabname AS objectname,
  dd02l.clidep AS clidep,
  dd02t.ddtext AS objectdescr,
  dd02l.contflag AS contflag,
  dd09l.tabart AS tabart,
  tadir.devclass AS devclass,
  df14l.ps_posid AS component,
  df14t.name AS compdescr,
  tdevc.component AS component_id,
  tdevc.dlvunit AS dlvunit,
  concat( dd02l.as4date, dd02l.as4time ) AS lastchange
FROM tadir
INNER JOIN dd02l ON /* join condition not captured in parsed metadata */
INNER JOIN tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd02t ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd09l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14t ON /* join condition not captured in parsed metadata */
;