I_ChgMgmtReqDate

DDL: I_CHGMGMTREQDATE SQL: ICMREQDATE Type: view BASIC Package: MOC_VDM

Change Mangament Request Date

I_ChgMgmtReqDate is a Basic CDS View that provides data about "Change Mangament Request Date" in SAP S/4HANA. It reads from 1 data source (/iam/d_i_date) and exposes 8 fields with key field ChgMgmtReqDateUUID. It has 1 association to related views. Part of development package MOC_VDM.

Data Sources (1)

SourceAliasJoin Type
/iam/d_i_date /iam/d_i_date from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChgMgmtRequest _ChgMgmtRequest $projection.ChgMgmtReqUUID = _ChgMgmtRequest.ChgMgmtReqUUID

Annotations (13)

NameValueLevelField
EndUserText.label Change Mangament Request Date view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMREQDATE 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 ChgMgmtReqDateUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ChgMgmtReqDateUUID db_key UUID
ChgMgmtReqUUID parent_key UUID
ChgMgmtReqDateNodeCatUUID node_cat_key NodeID
ChgMgmtDateRole role_cd Timepoint Code
ChgMgmtDateOrigin origin_cd Partner Origin
TimeZoneID time_zone_cd Time Zone
ChgMgmtReqDateTime date_time Time Stamp
_ChgMgmtRequest _ChgMgmtRequest

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_ChgMgmtReqDate.
-- 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: ICMREQDATE

CREATE VIEW I_ChgMgmtReqDate AS
SELECT
  db_key AS ChgMgmtReqDateUUID,
  parent_key AS ChgMgmtReqUUID,
  node_cat_key AS ChgMgmtReqDateNodeCatUUID,
  role_cd AS ChgMgmtDateRole,
  origin_cd AS ChgMgmtDateOrigin,
  time_zone_cd AS TimeZoneID,
  date_time AS ChgMgmtReqDateTime
FROM /iam/d_i_date
LEFT OUTER JOIN I_ChgMgmtRequest AS _ChgMgmtRequest ON ChgMgmtReqUUID = _ChgMgmtRequest.ChgMgmtReqUUID  -- association [1..1]
;