I_ChgMgmtReqType

DDL: I_CHGMGMTREQTYPE SQL: ICMREQTYPE Type: view BASIC

Change Management Request Type

I_ChgMgmtReqType is a Basic CDS View (Dimension) that provides data about "Change Management Request Type" in SAP S/4HANA. It reads from 1 data source (/iam/c_issuetyp) and exposes 13 fields with key field ChgMgmtReqType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/iam/c_issuetyp /iam/c_issuetyp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChgMgmtReqTypeText _Text $projection.ChgMgmtReqType = _Text.ChgMgmtReqType

Annotations (17)

NameValueLevelField
EndUserText.label Change Management Request Type view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
AbapCatalog.sqlViewName ICMREQTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ChgMgmtReqType view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY ChgMgmtReqType Issue Type
ChgMgmtReqCategory iss_category Issue Cat.
ChgMgmtReqNumberRangeInterval Issue No.Range
ChgMgmtActyNumberRangeInterval act_nrange_intvl Activity No.Rng
ChgMgmtReqInitialReviewType init_review_opt Initial Review
ChgMgmtResponsibleRole party_role_code Resp.Partn.Role
ChgMgmtReporterRole initiator_role Initiator Role
ChgMgmtReqActyDetnBRFAppl act_det_appl BRF+ Appl. Activity
ChgMgmtReqActyDetnBRFFunction act_det_function BRF+ Func. Activity
ChgMgmtPrintForm formname Subroutine
ChgMgmtUserStatusProfile status_profile User Status Profile
ChgMgmtConfigurationIsInactive inactive WO Locked
_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_ChgMgmtReqType.
-- 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: ICMREQTYPE

CREATE VIEW I_ChgMgmtReqType AS
SELECT
  cast(issue_type as chgmgmtreqtype preserving type) AS ChgMgmtReqType,
  iss_category AS ChgMgmtReqCategory,
  cast(nrange_interval as chgmgmtreqnumberrangeinterval preserving type) AS ChgMgmtReqNumberRangeInterval,
  act_nrange_intvl AS ChgMgmtActyNumberRangeInterval,
  init_review_opt AS ChgMgmtReqInitialReviewType,
  party_role_code AS ChgMgmtResponsibleRole,
  initiator_role AS ChgMgmtReporterRole,
  act_det_appl AS ChgMgmtReqActyDetnBRFAppl,
  act_det_function AS ChgMgmtReqActyDetnBRFFunction,
  formname AS ChgMgmtPrintForm,
  status_profile AS ChgMgmtUserStatusProfile,
  inactive AS ChgMgmtConfigurationIsInactive
FROM /iam/c_issuetyp
LEFT OUTER JOIN I_ChgMgmtReqTypeText AS _Text ON ChgMgmtReqType = _Text.ChgMgmtReqType  -- association [0..*]
;