I_SubscrpnOrdExternalReference

DDL: I_SUBSCRPNORDEXTERNALREFERENCE Type: view_entity COMPOSITE

External Reference

I_SubscrpnOrdExternalReference is a Composite CDS View that provides data about "External Reference" in SAP S/4HANA. It reads from 1 data source (crms4d_ext_ref) and exposes 2 fields with key field SubscriptionOrder. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
crms4d_ext_ref crms4d_ext_ref from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SubscriptionOrder _SubscriptionOrder $projection.SubscriptionOrder = _SubscriptionOrder.SubscriptionOrder

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label External Reference view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SubscriptionOrder object_id Transaction ID
_SubscriptionOrder _SubscriptionOrder

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_SubscrpnOrdExternalReference.
-- 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_SubscrpnOrdExternalReference AS
SELECT
  object_id AS SubscriptionOrder
FROM crms4d_ext_ref
LEFT OUTER JOIN I_SubscriptionOrder AS _SubscriptionOrder ON SubscriptionOrder = _SubscriptionOrder.SubscriptionOrder  -- association [1..1]
;