I_ChgMgmtReqCategoryText

DDL: I_CHGMGMTREQCATEGORYTEXT Type: view_entity BASIC Package: MOC_VDM

Change Management Request Category - Txt

I_ChgMgmtReqCategoryText is a Basic CDS View that provides data about "Change Management Request Category - Txt" in SAP S/4HANA. It reads from 1 data source (/iam/i_iss_cat_t) and exposes 4 fields with key fields Language, ChgMgmtReqCategory. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3406). Part of development package MOC_VDM.

Data Sources (1)

SourceAliasJoin Type
/iam/i_iss_cat_t /iam/i_iss_cat_t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChgMgmtReqCategory _ChgMgmtReqCategory $projection.ChgMgmtReqCategory = _ChgMgmtReqCategory.ChgMgmtReqCategory

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Management Request Category - Txt view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3406 ASQL_F3406 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY ChgMgmtReqCategory Issue Cat.
ChgMgmtReqCategoryText description Well Code Des.
_ChgMgmtReqCategory _ChgMgmtReqCategory

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_ChgMgmtReqCategoryText.
-- 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_ChgMgmtReqCategoryText AS
SELECT
  langu AS Language,
  cast( iss_category as /moc/iss_category preserving type ) AS ChgMgmtReqCategory,
  description AS ChgMgmtReqCategoryText
FROM /iam/i_iss_cat_t
LEFT OUTER JOIN I_ChgMgmtReqCategory AS _ChgMgmtReqCategory ON ChgMgmtReqCategory = _ChgMgmtReqCategory.ChgMgmtReqCategory  -- association [1..1]
;