DEVCLASS_F4_Select

DDL: DEVCLASS_F4_SELECT Type: view_entity

Source data for search help DEVCLASS

DEVCLASS_F4_Select is a CDS View that provides data about "Source data for search help DEVCLASS" in SAP S/4HANA. It reads from 2 data sources (tdevc, tdevct) and exposes 4 fields with key field devclass.

Data Sources (2)

SourceAliasJoin Type
tdevc main from
tdevct text left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Source data for search help DEVCLASS view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY devclass tdevc devclass Package (Obsolete)
pdevclass
consys tdevc consys Invalid Field
ctext

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 DEVCLASS_F4_Select.
-- 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 DEVCLASS_F4_Select AS
SELECT
  main.devclass AS devclass,
  cast( main.pdevclass as devlayer preserving type ) AS pdevclass,
  main.consys AS consys,
  coalesce( text.ctext, main.ctext ) AS ctext
FROM tdevc AS main
LEFT OUTER JOIN tdevct AS text ON /* join condition not captured in parsed metadata */
;