A_SitnDefTypeText

DDL: A_SITNDEFTYPETEXT SQL: ASITNDEFTYPET Type: view BASIC

Situation Type - Text

A_SitnDefTypeText is a Basic CDS View that provides data about "Situation Type - Text" in SAP S/4HANA. It reads from 2 data sources (sit_def_t, I_Language) and exposes 4 fields with key fields SitnDefinitionID, Language.

Data Sources (2)

SourceAliasJoin Type
sit_def_t _DefinitionText from
I_Language _Language inner

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ASITNDEFTYPET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SitnDefinitionID view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Situation Type - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID sitndefinitionid Situation Type ID
KEY Language sit_def_t language Report Text Language
SitnDefName sitndefname Situation Name
SitnDefDescription sitncndndescription Situation Cndn Desc

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_SitnDefTypeText.
-- 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: ASITNDEFTYPET

CREATE VIEW A_SitnDefTypeText AS
SELECT
  SitnDefinitionID,
  _DefinitionText.language AS Language,
  SitnDefName,
  sitncndndescription AS SitnDefDescription
FROM sit_def_t AS _DefinitionText
INNER JOIN I_Language AS _Language ON /* join condition not captured in parsed metadata */
;