A_SitnTmplDataCntxtDefText

DDL: A_SITNTMPLDATACNTXTDEFTEXT SQL: ASITNTDCTXSCHT Type: view BASIC

Schema for Data Context Definition - Text

A_SitnTmplDataCntxtDefText is a Basic CDS View that provides data about "Schema for Data Context Definition - Text" in SAP S/4HANA. It reads from 2 data sources (I_Language, sit_t_dctx_sch_t) and exposes 5 fields with key fields SitnDefTemplateID, SitnDataCntxtFormatVersion, SitnDataCntxtSchemaVersion, Language.

Data Sources (2)

SourceAliasJoin Type
I_Language _Language inner
sit_t_dctx_sch_t _SchemaText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ASITNTDCTXSCHT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Schema for Data Context Definition - Text view
ObjectModel.query.implementedBy ABAP:CL_SIT_DCTX_ENTITY_SCHEMA_T view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SitnDefTemplateID sit_t_dctx_sch_t sitndeftemplateid Sitn Template ID
KEY SitnDataCntxtFormatVersion sit_t_dctx_sch_t sitndatacntxtformatversion Format Version
KEY SitnDataCntxtSchemaVersion sit_t_dctx_sch_t sitndatacntxtschemaversion Schema Version
KEY Language sit_t_dctx_sch_t language Report Text Language
SitnDataCntxtText sitndatacntxttext Data Context Data

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 A_SitnTmplDataCntxtDefText.
-- 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: ASITNTDCTXSCHT

CREATE VIEW A_SitnTmplDataCntxtDefText AS
SELECT
  _SchemaText.sitndeftemplateid AS SitnDefTemplateID,
  _SchemaText.sitndatacntxtformatversion AS SitnDataCntxtFormatVersion,
  _SchemaText.sitndatacntxtschemaversion AS SitnDataCntxtSchemaVersion,
  _SchemaText.language AS Language,
  SitnDataCntxtText
FROM sit_t_dctx_sch_t AS _SchemaText
INNER JOIN I_Language AS _Language ON /* join condition not captured in parsed metadata */
;