A_BusSolnQtanItmFUPSrvcOrder

DDL: A_BUSSOLNQTANITMFUPSRVCORDER Type: view COMPOSITE

Follow-up Service Order Item

A_BusSolnQtanItmFUPSrvcOrder is a Composite CDS View that provides data about "Follow-up Service Order Item" 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] I_ServiceDocumentItemEnhcd _SourceItemDoc $projection.BusSolnQuotationItemUUID = _SourceItemDoc.ServiceDocumentItemCharUUID
[1..1] A_BusinessSolutionQuotation _BusinessSolutionQuotation $projection.BusinessSolutionQuotation = _BusinessSolutionQuotation.BusinessSolutionQuotation

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Follow-up Service Order Item view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ABSQITMFUPSRVCOI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false 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.
BusSolnQuotationItemUUID ServiceDocumentItemCharUUID
BusinessSolutionQuotation _SourceItemDoc ServiceDocument Transaction ID
BusSolutionQuotationItem _SourceItemDoc ServiceDocumentItem Service Document
ServiceOrder _ServiceDocItm ServiceDocument Transaction ID
ServiceOrderItem _ServiceDocItm ServiceDocumentItem Service Document
_BusinessSolutionQuotation _BusinessSolutionQuotation

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_BusSolnQtanItmFUPSrvcOrder.
-- 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_BusSolnQtanItmFUPSrvcOrder AS
SELECT
  ServiceDocumentItmRelationUUID,
  ServiceDocItmRltnSqncNumber,
  ServiceDocumentItemCharUUID AS BusSolnQuotationItemUUID,
  _SourceItemDoc.ServiceDocument AS BusinessSolutionQuotation,
  _SourceItemDoc.ServiceDocumentItem AS BusSolutionQuotationItem,
  _ServiceDocItm.ServiceDocument AS ServiceOrder,
  _ServiceDocItm.ServiceDocumentItem AS ServiceOrderItem
FROM I_ServiceDocumentItemSuccssr_2
LEFT OUTER JOIN I_ServiceDocumentItemEnhcd AS _SourceItemDoc ON BusSolnQuotationItemUUID = _SourceItemDoc.ServiceDocumentItemCharUUID  -- association [1..1]
LEFT OUTER JOIN A_BusinessSolutionQuotation AS _BusinessSolutionQuotation ON BusinessSolutionQuotation = _BusinessSolutionQuotation.BusinessSolutionQuotation  -- association [1..1]
;