I_SvOrdRefSvCldV2ServiceOrder

DDL: I_SVORDREFSVCLDV2SERVICEORDER Type: view_entity COMPOSITE

Retrieves SAP Service Cloud header ID

I_SvOrdRefSvCldV2ServiceOrder is a Composite CDS View that provides data about "Retrieves SAP Service Cloud header ID" in SAP S/4HANA. It reads from 2 data sources (I_ServiceDocumentPredecessor, I_ServiceDocumentSuccessor) and exposes 14 fields with key field ServiceDocumentRelationUUID.

Data Sources (2)

SourceAliasJoin Type
I_ServiceDocumentPredecessor I_ServiceDocumentPredecessor from
I_ServiceDocumentSuccessor I_ServiceDocumentSuccessor union

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Retrieves SAP Service Cloud header ID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentRelationUUID ServiceDocumentRelationUUID GUID link
PrdcssrSuccssrDocObjectType ServiceDocPrdcssrBusObjType Object Type
SrvcCloudVersion2ServiceOrder CustMgmtPrdcssrTransactionKey Key
ServiceDocumentPredecessorUUID ServiceDocumentPredecessorUUID Object GUID
ServiceObjectType ServiceObjectType Object Type
ServiceDocumentUUID ServiceDocumentUUID Object GUID
ServiceOrder _ServiceDoc ServiceDocument Transaction ID
PrdcssrSuccssrDocObjectType ServiceDocSuccessorBusObjType Object Type
SrvcCloudVersion2ServiceOrder ServiceDocSuccessor Key
ServiceDocumentPredecessorUUID ServiceDocumentSuccessorUUID Object GUID
ServiceObjectType ServiceObjectType Object Type
ServiceDocumentUUID ServiceDocumentUUID Object GUID
ServiceOrder _ServiceDoc ServiceDocument Transaction ID
_ServiceDoc _ServiceDoc

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_SvOrdRefSvCldV2ServiceOrder.
-- 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_SvOrdRefSvCldV2ServiceOrder AS
SELECT
  ServiceDocumentRelationUUID,
  ServiceDocPrdcssrBusObjType AS PrdcssrSuccssrDocObjectType,
  CustMgmtPrdcssrTransactionKey AS SrvcCloudVersion2ServiceOrder,
  ServiceDocumentPredecessorUUID,
  ServiceObjectType,
  ServiceDocumentUUID,
  _ServiceDoc.ServiceDocument AS ServiceOrder
FROM I_ServiceDocumentPredecessor
-- UNION with additional select branch(es): I_ServiceDocumentSuccessor
;