A_Sitn2ObjectText

DDL: A_SITN2OBJECTTEXT Type: view_entity COMPOSITE

Situation Object - Text

A_Sitn2ObjectText is a Composite CDS View that provides data about "Situation Object - Text" in SAP S/4HANA. It reads from 2 data sources (I_Language, R_Sitn2ObjectText) and exposes 4 fields with key fields SitnObjectID, Language.

Data Sources (2)

SourceAliasJoin Type
I_Language _Language inner
R_Sitn2ObjectText _ObjectText from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SitnObjectID view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name SituationObjectText_Type view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Situation Object - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SitnObjectID R_Sitn2ObjectText SitnObjectID Situation Object ID
KEY Language R_Sitn2ObjectText Language Report Text Language
SitnObjectName R_Sitn2ObjectText SitnObjectName Sit. Object Name
SitnObjectDescription R_Sitn2ObjectText SitnObjectDescription Description

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_Sitn2ObjectText.
-- 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 A_Sitn2ObjectText AS
SELECT
  _ObjectText.SitnObjectID AS SitnObjectID,
  _ObjectText.Language AS Language,
  _ObjectText.SitnObjectName AS SitnObjectName,
  _ObjectText.SitnObjectDescription AS SitnObjectDescription
FROM R_Sitn2ObjectText AS _ObjectText
INNER JOIN I_Language AS _Language ON /* join condition not captured in parsed metadata */
;