R_SubscrpnContrSuccessorTP

DDL: R_SUBSCRPNCONTRSUCCESSORTP Type: view_entity TRANSACTIONAL

Subscription Contract Successor - TP

R_SubscrpnContrSuccessorTP is a Transactional CDS View that provides data about "Subscription Contract Successor - TP" in SAP S/4HANA. It reads from 1 data source (I_SubscrpnContrSuccessor) and exposes 12 fields with key fields SubscriptionContract, ServiceDocumentRelationUUID, ServiceDocRltnSequenceNumber.

Data Sources (1)

SourceAliasJoin Type
I_SubscrpnContrSuccessor SubscrpnContrSuccessor from

Annotations (8)

NameValueLevelField
EndUserText.label Subscription Contract Successor - TP view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SubscriptionContract I_SubscrpnContrSuccessor SubscriptionContract Transaction ID
KEY ServiceDocumentRelationUUID ServiceDocumentRelationUUID
KEY ServiceDocRltnSequenceNumber ServiceDocRltnSequenceNumber Seq Number
ServiceDocumentRelationType ServiceDocumentRelationType
ServiceDocumentRelationKind ServiceDocumentRelationKind Type VONA
SubscriptionContractUUID ServiceDocumentUUID Object GUID
ServiceDocumentSuccessorUUID ServiceDocumentSuccessorUUID
ServiceDocSuccessor ServiceDocSuccessor
ServiceObjectType ServiceObjectType Object Type
ServiceDocSuccessorBusObjType ServiceDocSuccessorBusObjType
_ServiceDoc _ServiceDoc
_SubscriptionContract _SubscriptionContract

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 R_SubscrpnContrSuccessorTP.
-- 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 R_SubscrpnContrSuccessorTP AS
SELECT
  SubscrpnContrSuccessor.SubscriptionContract AS SubscriptionContract,
  ServiceDocumentRelationUUID,
  ServiceDocRltnSequenceNumber,
  ServiceDocumentRelationType,
  ServiceDocumentRelationKind,
  ServiceDocumentUUID AS SubscriptionContractUUID,
  ServiceDocumentSuccessorUUID,
  ServiceDocSuccessor,
  ServiceObjectType,
  ServiceDocSuccessorBusObjType
FROM I_SubscrpnContrSuccessor AS SubscrpnContrSuccessor
;