/APE/C_ProcessLinkLeftConv

DDL: /APE/C_PROCESSLINKLEFTCONV SQL: /APE/C_PLKLECV Type: view CONSUMPTION

Left Convertion for Process Link

/APE/C_ProcessLinkLeftConv is a Consumption CDS View that provides data about "Left Convertion for Process Link" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcessLink_TP) and exposes 13 fields with key field db_key.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcessLink_TP /APE/I_ProcessLink_TP from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_PLKLECV view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Left Convertion for Process Link view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY db_key db_key UUID
parent_key parent_key UUID
bo_type_uuid bo_type_uuid
bo_type bo_type SOT Name
bo_uuid bo_uuid
bo_uuid_32
link_type link_type Type of URL
step_uuid step_uuid
created_at created_at Uploaded On
created_by created_by Version Created By
changed_at changed_at Timestamp
changed_by changed_by User Name
_proc_hdr _proc_hdr

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 /APE/C_ProcessLinkLeftConv.
-- 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.
-- SQL view name: /APE/C_PLKLECV

CREATE VIEW /APE/C_ProcessLinkLeftConv AS
SELECT
  db_key,
  parent_key,
  bo_type_uuid,
  bo_type,
  bo_uuid,
  left(bo_uuid,32) AS bo_uuid_32,
  link_type,
  step_uuid,
  created_at,
  created_by,
  changed_at,
  changed_by
FROM /APE/I_ProcessLink_TP
;