I_ChgMgmtReqCategory

DDL: I_CHGMGMTREQCATEGORY Type: view_entity BASIC Package: MOC_VDM

Change Management Request Categories

I_ChgMgmtReqCategory is a Basic CDS View that provides data about "Change Management Request Categories" in SAP S/4HANA. It reads from 1 data source (/iam/i_iss_cat) and exposes 3 fields with key field ChgMgmtReqCategory. It has 1 association to related views. Part of development package MOC_VDM.

Data Sources (1)

SourceAliasJoin Type
/iam/i_iss_cat /iam/i_iss_cat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChgMgmtReqCategoryText _Text $projection.ChgMgmtReqCategory = _Text.ChgMgmtReqCategory

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Management Request Categories view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ChgMgmtReqCategory view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChgMgmtReqCategory Issue Cat.
ChgMgmtApplication application UI Application
_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_ChgMgmtReqCategory.
-- 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_ChgMgmtReqCategory AS
SELECT
  cast( iss_category as /moc/iss_category preserving type ) AS ChgMgmtReqCategory,
  application AS ChgMgmtApplication
FROM /iam/i_iss_cat
LEFT OUTER JOIN I_ChgMgmtReqCategoryText AS _Text ON ChgMgmtReqCategory = _Text.ChgMgmtReqCategory  -- association [0..*]
;