DDCDS_DIRECT_BASE_OBJECTS_V2

DDL: DDCDS_DIRECT_BASE_OBJECTS_V2 Type: view_entity

Get direct base objects for V2 Entity

DDCDS_DIRECT_BASE_OBJECTS_V2 is a CDS View that provides data about "Get direct base objects for V2 Entity" in SAP S/4HANA. It reads from 2 data sources (ddcds_fromclause, ddtypes) and exposes 2 fields with key fields entity_name, state.

Data Sources (2)

SourceAliasJoin Type
ddcds_fromclause from_clause from
ddtypes object_type inner

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Get direct base objects for V2 Entity view
AbapCatalog.entityBuffer.definitionAllowed true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY entity_name Entity Name(Uppercase)
KEY state Entity State

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 DDCDS_DIRECT_BASE_OBJECTS_V2.
-- 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 DDCDS_DIRECT_BASE_OBJECTS_V2 AS
SELECT
  cast(from_clause.entity_name as abap.char(30)) AS entity_name,
  cast(from_clause.as4local as abap.char(1)) AS state
FROM ddcds_fromclause AS from_clause
INNER JOIN ddtypes AS object_type ON /* join condition not captured in parsed metadata */
;