CUAN_CPG_TPL_SEARCH

DDL: CUAN_CPG_TPL_SEARCH Type: view_entity

Communication Flow Templates Search

CUAN_CPG_TPL_SEARCH is a CDS View that provides data about "Communication Flow Templates Search" in SAP S/4HANA. It reads from 1 data source (cuan_d_tpl_root) and exposes 11 fields with key field DB_KEY. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
cuan_d_tpl_root cuan_d_tpl_root from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CommunicationArea _CommunicationArea $projection.comm_area_id = _CommunicationArea.CommunicationArea and $projection.ref_org_struc = _CommunicationArea.ReferencedOrgStructure
[0..1] I_User _ADRP_OWNER $projection.crea_uname = _ADRP_OWNER.UserID

Annotations (7)

NameValueLevelField
EndUserText.label Communication Flow Templates Search view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey DB_KEY view
Analytics.technicalName CUAN_TPLSEARCH view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY DB_KEY cuan_d_tpl_root db_key UUID
hpa_client
id cuan_d_tpl_root id WorklistID
name cuan_d_tpl_root name Zone name
description cuan_d_tpl_root description Well Code Des.
type cuan_d_tpl_root type Worklist Type
process_type cuan_d_tpl_root process_type Type of Data
crea_uname cuan_d_tpl_root crea_uname User Name
owner_id cuan_d_tpl_root crea_uname User Name
is_hidden cuan_d_tpl_root is_hidden Is Hidden?
comm_area_id cuan_d_tpl_root comm_area_id

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 CUAN_CPG_TPL_SEARCH.
-- 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 CUAN_CPG_TPL_SEARCH AS
SELECT
  cuan_d_tpl_root.db_key AS DB_KEY,
  $session.client AS hpa_client,
  cuan_d_tpl_root.id AS id,
  cuan_d_tpl_root.name AS name,
  cuan_d_tpl_root.description AS description,
  cuan_d_tpl_root.type AS type,
  cuan_d_tpl_root.process_type AS process_type,
  cuan_d_tpl_root.crea_uname AS crea_uname,
  cuan_d_tpl_root.crea_uname AS owner_id,
  cuan_d_tpl_root.is_hidden AS is_hidden,
  cuan_d_tpl_root.comm_area_id AS comm_area_id
FROM cuan_d_tpl_root
LEFT OUTER JOIN I_CommunicationArea AS _CommunicationArea ON comm_area_id = _CommunicationArea.CommunicationArea AND ref_org_struc = _CommunicationArea.ReferencedOrgStructure  -- association [0..1]
LEFT OUTER JOIN I_User AS _ADRP_OWNER ON crea_uname = _ADRP_OWNER.UserID  -- association [0..1]
;