Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_SitnDefinition

DDL: I_SITNDEFINITION Type: view BASIC

Situation Type

I_SitnDefinition is a Basic CDS View that provides data about "Situation Type" in SAP S/4HANA. It reads from 2 data sources (sit_def, sit_t_def) and exposes 21 fields with key field SitnDefinitionID.

Data Sources (2)

SourceAliasJoin Type
sit_def Definition from
sit_t_def Template inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISITNDEF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Situation Type view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID sit_def sitndefinitionid Situation Type ID
SitnDefTemplateID sit_def sitndeftemplateid Sitn Template ID
SitnDefIsEnabled sit_def sitndefisenabled Sit. Type Enabled
SitnDefTrackingIsEnabled sit_def sitndeftrackingisenabled Monitoring Enabled
SitnDefAnchorObject sit_t_def sitndefanchorobject Anchor Object
SitnDefAnchorObjectView sit_t_def sitndefanchorobjectview Anchor Object View
SitnDefDeprecationStatus sit_t_def sitndefdeprecationstatus
SitnDefRank sit_def sitndefrank Display Sequence
SitnDefNotifIsAggregated sit_def sitndefnotifisaggregated Notif. Aggr. Enabled
SitnDefNotifIsRepeated sit_def sitndefnotifisrepeated Renotif. Enabled
SitnDefLongTextVersion sit_def sitndeflongtextversion Version Msg. Details
CreationDateTime sit_def crea_date_time Created On
CreatedByUser sit_def crea_uname Created
LastChangeDateTime sit_def lchg_date_time Changed On
LastChangedByUser sit_def lchg_uname Changed By
SitnDefIsTemplate
SitnIsAttribNavgnParameter sit_def sitnisattribnavgnparameters Nav. Parameter
SitnDefPageVariantIsEnabled sit_def sitndefpagevariantisenabled Page Var. Enabled
SitnDefDataContextIsEnabled sit_def sitndefdatacontextisenabled Data Context Enabled
SitnDefAutomationIsEnabled sit_def sitndefautomationisenabled Automation Enabled
RespyMgmtApplContextType

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 I_SitnDefinition.
-- 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 I_SitnDefinition AS
SELECT
  Definition.sitndefinitionid AS SitnDefinitionID,
  Definition.sitndeftemplateid AS SitnDefTemplateID,
  Definition.sitndefisenabled AS SitnDefIsEnabled,
  Definition.sitndeftrackingisenabled AS SitnDefTrackingIsEnabled,
  Template.sitndefanchorobject AS SitnDefAnchorObject,
  Template.sitndefanchorobjectview AS SitnDefAnchorObjectView,
  Template.sitndefdeprecationstatus AS SitnDefDeprecationStatus,
  Definition.sitndefrank AS SitnDefRank,
  Definition.sitndefnotifisaggregated AS SitnDefNotifIsAggregated,
  Definition.sitndefnotifisrepeated AS SitnDefNotifIsRepeated,
  Definition.sitndeflongtextversion AS SitnDefLongTextVersion,
  Definition.crea_date_time AS CreationDateTime,
  Definition.crea_uname AS CreatedByUser,
  Definition.lchg_date_time AS LastChangeDateTime,
  Definition.lchg_uname AS LastChangedByUser,
  cast (' ' as sit_de_def_template preserving type ) AS SitnDefIsTemplate,
  Definition.sitnisattribnavgnparameters AS SitnIsAttribNavgnParameter,
  Definition.sitndefpagevariantisenabled AS SitnDefPageVariantIsEnabled,
  Definition.sitndefdatacontextisenabled AS SitnDefDataContextIsEnabled,
  Definition.sitndefautomationisenabled AS SitnDefAutomationIsEnabled,
  cast ('SITY' as rsm_de_context_type ) AS RespyMgmtApplContextType
FROM sit_def AS Definition
INNER JOIN sit_t_def AS Template ON /* join condition not captured in parsed metadata */
;