/APE/I_ProcStepIDText_TP

DDL: /APE/I_PROCSTEPIDTEXT_TP Type: view TRANSACTIONAL

Process Step ID Description

/APE/I_ProcStepIDText_TP is a Transactional CDS View that provides data about "Process Step ID Description" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcStepIDText) and exposes 4 fields with key field language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcStepIDText /APE/I_ProcStepIDText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_ProcStepId_Tp _ProcStepID $projection.ape_parent_key = _ProcStepID.config_key

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_PRSTPIDT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Step ID Description view
ObjectModel.writeActivePersistence /APE/PRSTPIDT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.writeDraftPersistence /APE/PRSTPIDT_DR view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY language language Report Text Language
LanguageForEdit language Report Text Language
description description Well Code Des.
_ProcStepID _ProcStepID

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/I_ProcStepIDText_TP.
-- 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 /APE/I_ProcStepIDText_TP AS
SELECT
  language,
  language AS LanguageForEdit,
  description
FROM /APE/I_ProcStepIDText
LEFT OUTER JOIN /APE/I_ProcStepId_Tp AS _ProcStepID ON ape_parent_key = _ProcStepID.config_key  -- association [1..1]
;