/APE/I_TSTDOCASSERT_TP

DDL: /APE/I_TSTDOCASSERT_TP SQL: /APE/I_TSTDOCASR Type: view COMPOSITE

Test Document Assert

/APE/I_TSTDOCASSERT_TP is a Composite CDS View that provides data about "Test Document Assert" in SAP S/4HANA. It reads from 1 data source (/APE/I_TESTDOCASSERT) and exposes 7 fields with key field db_key. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_TESTDOCASSERT /APE/I_TESTDOCASSERT from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_TSTDOC_TP _TestDoc $projection.parent_key = _TestDoc.db_key

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_TSTDOCASR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Test Document Assert view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.writeActivePersistence /APE/TSTDOCASR view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.representativeKey DB_KEY view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY db_key db_key UUID
parent_key parent_key UUID
_dataaging _dataaging Data Aging
auth_grp auth_grp AuthorizGroup
proc_cluster proc_cluster
test_case_id test_case_id
_TestDoc _TestDoc

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_TSTDOCASSERT_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.
-- SQL view name: /APE/I_TSTDOCASR

CREATE VIEW /APE/I_TSTDOCASSERT_TP AS
SELECT
  db_key,
  parent_key,
  auth_grp,
  proc_cluster,
  test_case_id
FROM /APE/I_TESTDOCASSERT
LEFT OUTER JOIN /APE/I_TSTDOC_TP AS _TestDoc ON parent_key = _TestDoc.db_key  -- association [1..1]
;