cnv_dmc_mc_pe_instance_fileds

DDL: CNV_DMC_MC_PE_INSTANCE_FILEDS Type: view_entity

Instance fields

cnv_dmc_mc_pe_instance_fileds is a CDS View that provides data about "Instance fields" in SAP S/4HANA. It reads from 7 data sources and exposes 12 fields.

Data Sources (7)

SourceAliasJoin Type
cnv_pe_area area inner
cnv_pe_object_t obj_t_en left_outer
cnv_pe_object_t obj_t_logon left_outer
cnv_pe_if_par par from
cnv_pe_if_par parent inner
cnv_pe_wl wl inner
cnv_pe_if_par_wl wl_field left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Instance fields view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (12)

KeyFieldSource TableSource FieldDescription
id cnv_pe_if_par id WorklistID
area_id cnv_pe_area id WorklistID
name cnv_pe_if_par name Zone name
description
par_nr cnv_pe_if_par par_nr Par Nr
type cnv_pe_if_par type Worklist Type
full_name
is_key cnv_pe_if_par is_key Key field
displayed cnv_pe_if_par_wl displayed Display in InstList
deleted cnv_pe_if_par_wl deleted Truth Value
customer cnv_pe_if_par_wl customer Sold-to Party
key_internal cnv_pe_if_par_wl key_internal Internal Key

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 cnv_dmc_mc_pe_instance_fileds.
-- 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 cnv_dmc_mc_pe_instance_fileds AS
SELECT
  par.id AS id,
  area.id AS area_id,
  par.name AS name,
  coalesce( coalesce( obj_t_logon.descr, obj_t_en.descr), par.inttext ) AS description,
  par.par_nr AS par_nr,
  par.type AS type,
  concat( 'WORKLIST_ROOT-', par.name ) AS full_name,
  par.is_key AS is_key,
  wl_field.displayed AS displayed,
  wl_field.deleted AS deleted,
  wl_field.customer AS customer,
  wl_field.key_internal AS key_internal
FROM cnv_pe_if_par AS par
INNER JOIN cnv_pe_wl AS wl ON /* join condition not captured in parsed metadata */
INNER JOIN cnv_pe_area AS area ON /* join condition not captured in parsed metadata */
INNER JOIN cnv_pe_if_par AS parent ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_object_t AS obj_t_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_object_t AS obj_t_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_if_par_wl AS wl_field ON /* join condition not captured in parsed metadata */
;