/APE/I_CheckResultText_TP

DDL: /APE/I_CHECKRESULTTEXT_TP Type: view TRANSACTIONAL

Check Result Description

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

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckResultText /APE/I_CheckResultText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_CheckResult_TP _CheckResult $projection.ape_parent_key = _CheckResult.config_key

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_CHKREST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check Result Description view
ObjectModel.writeActivePersistence /APE/CHKREST view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence /APE/CHKREST_DR view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

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

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_CheckResultText_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_CheckResultText_TP AS
SELECT
  language,
  language AS LanguageForEdit,
  description
FROM /APE/I_CheckResultText
LEFT OUTER JOIN /APE/I_CheckResult_TP AS _CheckResult ON ape_parent_key = _CheckResult.config_key  -- association [1..1]
;