I_ChgMgmtReqDescription

DDL: I_CHGMGMTREQDESCRIPTION SQL: ICMREQUESTDESC Type: view BASIC Package: MOC_VDM

Change Management Request Description

I_ChgMgmtReqDescription is a Basic CDS View that provides data about "Change Management Request Description" in SAP S/4HANA. It reads from 1 data source (/iam/d_i_desc) and exposes 8 fields with key field ChgMgmtReqDescriptionUUID. It has 2 associations to related views. Part of development package MOC_VDM.

Data Sources (1)

SourceAliasJoin Type
/iam/d_i_desc /iam/d_i_desc from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ChgMgmtRequest _ChgMgmtRequest $projection.ChgMgmtReqUUID = _ChgMgmtRequest.ChgMgmtReqUUID
[0..*] I_ChgMgmtReqDescriptionText _Text $projection.ChgMgmtReqDescriptionUUID = _Text.ChgMgmtReqDescriptionUUID

Annotations (13)

NameValueLevelField
EndUserText.label Change Management Request Description view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMREQUESTDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey ChgMgmtReqDescriptionUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ChgMgmtReqDescriptionUUID db_key UUID
ChgMgmtReqUUID parent_key UUID
ChgMgmtReqDescNodeCatUUID node_cat_key NodeID
ChgMgmtDescriptionType desc_type Text Type
ChgMgmtResponseGroup code_grp Code Group
ChgMgmtResponse code Water Hazard Cl.
_ChgMgmtRequest _ChgMgmtRequest
_Text _Text

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_ChgMgmtReqDescription.
-- 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: ICMREQUESTDESC

CREATE VIEW I_ChgMgmtReqDescription AS
SELECT
  db_key AS ChgMgmtReqDescriptionUUID,
  parent_key AS ChgMgmtReqUUID,
  node_cat_key AS ChgMgmtReqDescNodeCatUUID,
  desc_type AS ChgMgmtDescriptionType,
  code_grp AS ChgMgmtResponseGroup,
  code AS ChgMgmtResponse
FROM /iam/d_i_desc
LEFT OUTER JOIN I_ChgMgmtRequest AS _ChgMgmtRequest ON ChgMgmtReqUUID = _ChgMgmtRequest.ChgMgmtReqUUID  -- association [1..1]
LEFT OUTER JOIN I_ChgMgmtReqDescriptionText AS _Text ON ChgMgmtReqDescriptionUUID = _Text.ChgMgmtReqDescriptionUUID  -- association [0..*]
;