A_BusSolnOrdItmFUPSrvcContr

DDL: A_BUSSOLNORDITMFUPSRVCCONTR Type: view COMPOSITE

Follow-up Service Contract Items

A_BusSolnOrdItmFUPSrvcContr is a Composite CDS View that provides data about "Follow-up Service Contract Items" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemSuccssr_2) and exposes 8 fields with key fields ServiceDocumentItmRelationUUID, ServiceDocItmRltnSqncNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentItemSuccssr_2 I_ServiceDocumentItemSuccssr_2 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] A_BusinessSolutionOrder _BusinessSolutionOrder $projection.BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder
[1..1] I_ServiceDocumentItemEnhcd _SourceItemDoc $projection.BusinessSolutionOrderUUID = _SourceItemDoc.ServiceDocumentItemCharUUID

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Follow-up Service Contract Items view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ABSOITMFUPSRVCTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentItmRelationUUID ServiceDocumentItmRelationUUID GUID link
KEY ServiceDocItmRltnSqncNumber ServiceDocItmRltnSqncNumber Sequential no.
BusinessSolutionOrderUUID ServiceDocumentItemCharUUID
BusinessSolutionOrder _SourceItemDoc ServiceDocument Transaction ID
BusinessSolutionOrderItem _SourceItemDoc ServiceDocumentItem Service Document
ServiceContract _ServiceDocItm ServiceDocument Transaction ID
ServiceContractItem _ServiceDocItm ServiceDocumentItem Service Document
_BusinessSolutionOrder _BusinessSolutionOrder

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_BusSolnOrdItmFUPSrvcContr.
-- 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_BusSolnOrdItmFUPSrvcContr AS
SELECT
  ServiceDocumentItmRelationUUID,
  ServiceDocItmRltnSqncNumber,
  ServiceDocumentItemCharUUID AS BusinessSolutionOrderUUID,
  _SourceItemDoc.ServiceDocument AS BusinessSolutionOrder,
  _SourceItemDoc.ServiceDocumentItem AS BusinessSolutionOrderItem,
  _ServiceDocItm.ServiceDocument AS ServiceContract,
  _ServiceDocItm.ServiceDocumentItem AS ServiceContractItem
FROM I_ServiceDocumentItemSuccssr_2
LEFT OUTER JOIN A_BusinessSolutionOrder AS _BusinessSolutionOrder ON BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder  -- association [1..1]
LEFT OUTER JOIN I_ServiceDocumentItemEnhcd AS _SourceItemDoc ON BusinessSolutionOrderUUID = _SourceItemDoc.ServiceDocumentItemCharUUID  -- association [1..1]
;