CDR_I_OBJECT_DESCRIPTION

DDL: CDR_I_OBJECT_DESCRIPTION Type: view_entity

Appl comp & archiving object description

CDR_I_OBJECT_DESCRIPTION is a CDS View that provides data about "Appl comp & archiving object description" in SAP S/4HANA. It reads from 3 data sources (df14l, df14t, arch_txt) and exposes 4 fields with key field Name.

Data Sources (3)

SourceAliasJoin Type
df14l a from
df14t b left_outer
arch_txt c union

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Appl comp & archiving object description view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name df14l ps_posid WBS Element
Description df14t name Text
Description objtext Text
ObjectType

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 CDR_I_OBJECT_DESCRIPTION.
-- 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 CDR_I_OBJECT_DESCRIPTION AS
SELECT
  a.ps_posid AS Name,
  b.name AS Description,
  'ARC' AS ObjectType
FROM df14l AS a
LEFT OUTER JOIN df14t AS b ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): arch_txt
;