A_ServiceOrdItmRefSrvcReq

DDL: A_SERVICEORDITMREFSRVCREQ Type: view COMPOSITE

Service Order Item Reference Service Request API

A_ServiceOrdItmRefSrvcReq is a Composite CDS View that provides data about "Service Order Item Reference Service Request API" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemPrdcssr_2) and exposes 4 fields with key field ServiceOrderItemUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentItemPrdcssr_2 I_ServiceDocumentItemPrdcssr_2 from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceOrderItem _ServiceOrderItem $projection.ServiceOrderItemUUID = _ServiceOrderItem.ServiceOrderItemUUID

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Service Order Item Reference Service Request API view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVORDITMRESRRQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrderItemUUID
ReferenceServiceRequest _ServiceDocItm ServiceDocument Transaction ID
ReferenceServiceRequestItem _ServiceDocItm ServiceDocumentItem Service Document
_ServiceOrderItem _ServiceOrderItem

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 A_ServiceOrdItmRefSrvcReq.
-- 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 A_ServiceOrdItmRefSrvcReq AS
SELECT
  hextobin(ServiceDocumentItemCharUUID) AS ServiceOrderItemUUID,
  _ServiceDocItm.ServiceDocument AS ReferenceServiceRequest,
  _ServiceDocItm.ServiceDocumentItem AS ReferenceServiceRequestItem
FROM I_ServiceDocumentItemPrdcssr_2
LEFT OUTER JOIN A_ServiceOrderItem AS _ServiceOrderItem ON ServiceOrderItemUUID = _ServiceOrderItem.ServiceOrderItemUUID  -- association [1]
;