I_ChgMgmtPersnInvolvedRoleText

DDL: I_CHGMGMTPERSNINVOLVEDROLETEXT SQL: ICMPERINVROLET Type: view BASIC Package: MOC_VDM

Change Mgmt Person Involved Role Text

I_ChgMgmtPersnInvolvedRoleText is a Basic CDS View that provides data about "Change Mgmt Person Involved Role Text" in SAP S/4HANA. It reads from 1 data source (/iam/c_role_cd_t) and exposes 5 fields with key fields Language, ChgMgmtPersnInvolvedRole. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F3405, ASQL_F3406). Part of development package MOC_VDM.

Data Sources (1)

SourceAliasJoin Type
/iam/c_role_cd_t /iam/c_role_cd_t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ChgMgmtPersnInvolvedRole _ChgMgmtPersnInvolvedRole $projection.ChgMgmtPersnInvolvedRole = _ChgMgmtPersnInvolvedRole.ChgMgmtPersnInvolvedRole
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Change Mgmt Person Involved Role Text view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMPERINVROLET 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.dataCategory #TEXT view
ObjectModel.representativeKey ChgMgmtPersnInvolvedRole view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F3405 ASQL_F3405 C2 NOT_RELEASED
ASQL_F3406 ASQL_F3406 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY ChgMgmtPersnInvolvedRole party_role_code Resp.Partn.Role
ChgMgmtPersnInvolvedRoleText Well Code Des.
_ChgMgmtPersnInvolvedRole _ChgMgmtPersnInvolvedRole
_Language _Language

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_ChgMgmtPersnInvolvedRoleText.
-- 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: ICMPERINVROLET

CREATE VIEW I_ChgMgmtPersnInvolvedRoleText AS
SELECT
  langu AS Language,
  party_role_code AS ChgMgmtPersnInvolvedRole,
  cast(description as /moc/party_role_cd_desc preserving type ) AS ChgMgmtPersnInvolvedRoleText
FROM /iam/c_role_cd_t
LEFT OUTER JOIN I_ChgMgmtPersnInvolvedRole AS _ChgMgmtPersnInvolvedRole ON ChgMgmtPersnInvolvedRole = _ChgMgmtPersnInvolvedRole.ChgMgmtPersnInvolvedRole  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;