E_InvgCsMRelationship

DDL: E_INVGCSMRELATIONSHIP SQL: EINVGCSMRELATION Type: view EXTENSION

Extensible view for ICM Relationship

E_InvgCsMRelationship is a Extension CDS View that provides data about "Extensible view for ICM Relationship" in SAP S/4HANA. It reads from 1 data source (crmd_icm_rel) and exposes 4 fields with key fields InvgCsMRelationshipUUID, InvgCsMRelationshipSourceUUID, InvgCsMRelationshipTargetUUID.

Data Sources (1)

SourceAliasJoin Type
crmd_icm_rel Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EINVGCSMRELATION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #EXTENSION view
EndUserText.label Extensible view for ICM Relationship view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InvgCsMRelationshipUUID crmd_icm_rel guid UUID 22 char.
KEY InvgCsMRelationshipSourceUUID crmd_icm_rel source_guid Source GUID
KEY InvgCsMRelationshipTargetUUID crmd_icm_rel target_guid GUID
IsActiveEntity

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 E_InvgCsMRelationship.
-- 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: EINVGCSMRELATION

CREATE VIEW E_InvgCsMRelationship AS
SELECT
  Persistence.guid AS InvgCsMRelationshipUUID,
  Persistence.source_guid AS InvgCsMRelationshipSourceUUID,
  Persistence.target_guid AS InvgCsMRelationshipTargetUUID,
  cast( 'X' as sdraft_is_active preserving type ) AS IsActiveEntity
FROM crmd_icm_rel AS Persistence
;