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

I_SitnDefAttribute

DDL: I_SITNDEFATTRIBUTE SQL: ISITNATTRIBUTE Type: view BASIC

Situation Attribute

I_SitnDefAttribute is a Basic CDS View that provides data about "Situation Attribute" in SAP S/4HANA. It reads from 2 data sources (sit_rsm_attr, sit_t_rsm_attr) and exposes 8 fields with key fields SitnDefinitionID, SitnRespyMgmtTeamCat, SitnRespyMgmtAttribute, SitnDefinitionID, SitnRespyMgmtTeamCat. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
sit_rsm_attr Attribute from
sit_t_rsm_attr AttributeTemplate union_all

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SitnDefUnion _Definition $projection.SitnDefinitionID = _Definition.SitnDefinitionID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISITNATTRIBUTE 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 Attribute view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID sit_rsm_attr sitndefinitionid Situation Type ID
KEY SitnRespyMgmtTeamCat sit_rsm_attr sitnrespymgmtteamcat Team Category
KEY SitnRespyMgmtAttribute sit_rsm_attr sitnrespymgmtattribute Resp. Def. Name
clientasMandt
KEY SitnDefinitionID sit_t_rsm_attr sitndefinitionid Situation Type ID
KEY SitnRespyMgmtTeamCat sit_t_rsm_attr sitnrespymgmtteamcat Team Category
KEY SitnRespyMgmtAttribute sit_t_rsm_attr sitnrespymgmtattribute Resp. Def. Name
_Definition _Definition

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_SitnDefAttribute.
-- 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: ISITNATTRIBUTE

CREATE VIEW I_SitnDefAttribute AS
SELECT
  Attribute.sitndefinitionid AS SitnDefinitionID,
  Attribute.sitnrespymgmtteamcat AS SitnRespyMgmtTeamCat,
  Attribute.sitnrespymgmtattribute AS SitnRespyMgmtAttribute
FROM sit_rsm_attr AS Attribute
LEFT OUTER JOIN I_SitnDefUnion AS _Definition ON SitnDefinitionID = _Definition.SitnDefinitionID  -- association [1..1]
-- UNION ALL with additional select branch(es): sit_t_rsm_attr
;