I_SrvcOrdRefFSMServiceCall

DDL: I_SRVCORDREFFSMSERVICECALL SQL: ISVRCREFFSM Type: view COMPOSITE

Retrieves the FSM Service Call ID for Service Order

I_SrvcOrdRefFSMServiceCall is a Composite CDS View that provides data about "Retrieves the FSM Service Call ID for Service Order" 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 (11)

NameValueLevelField
AbapCatalog.sqlViewName ISVRCREFFSM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Retrieves the FSM Service Call ID for Service Order view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentRelationUUID ServiceDocumentRelationUUID GUID link
PrdcssrSuccssrDocObjectType ServiceDocPrdcssrBusObjType Object Type
FSMServiceCall CustMgmtPrdcssrTransactionKey Key
ServiceDocumentPredecessorUUID ServiceDocumentPredecessorUUID Object GUID
ServiceObjectType ServiceObjectType Object Type
ServiceDocumentUUID ServiceDocumentUUID Object GUID
ServiceOrder _ServiceDoc ServiceDocument Transaction ID
PrdcssrSuccssrDocObjectType ServiceDocSuccessorBusObjType Object Type
FSMServiceCall 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_SrvcOrdRefFSMServiceCall.
-- 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: ISVRCREFFSM

CREATE VIEW I_SrvcOrdRefFSMServiceCall AS
SELECT
  ServiceDocumentRelationUUID,
  ServiceDocPrdcssrBusObjType AS PrdcssrSuccssrDocObjectType,
  CustMgmtPrdcssrTransactionKey AS FSMServiceCall,
  ServiceDocumentPredecessorUUID,
  ServiceObjectType,
  ServiceDocumentUUID,
  _ServiceDoc.ServiceDocument AS ServiceOrder
FROM I_ServiceDocumentPredecessor
-- UNION with additional select branch(es): I_ServiceDocumentSuccessor
;