A_BusSolnOrderItemObjectList

DDL: A_BUSSOLNORDERITEMOBJECTLIST Type: view CONSUMPTION

Service Contract Item Object List

A_BusSolnOrderItemObjectList is a Consumption CDS View that provides data about "Service Contract Item Object List" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentRefObject) and exposes 6 fields with key fields BusinessSolutionOrder, BusinessSolutionOrderItem, Product, Equipment, ServiceRefFunctionalLocation. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentRefObject I_ServiceDocumentRefObject from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_BusinessSolutionOrder _BusinessSolutionOrder $projection.BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder

Annotations (15)

NameValueLevelField
EndUserText.label Service Contract Item Object List view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ABSOOBJLIST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BusinessSolutionOrder ServiceDocument Transaction ID
KEY BusinessSolutionOrderItem ServiceDocumentItem Service Document
KEY Product ProductID Product ID
KEY Equipment Equipment Equipment check
KEY ServiceRefFunctionalLocation FunctionalLocation Object ID
_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_BusSolnOrderItemObjectList.
-- 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_BusSolnOrderItemObjectList AS
SELECT
  ServiceDocument AS BusinessSolutionOrder,
  ServiceDocumentItem AS BusinessSolutionOrderItem,
  ProductID AS Product,
  Equipment,
  FunctionalLocation AS ServiceRefFunctionalLocation
FROM I_ServiceDocumentRefObject
LEFT OUTER JOIN A_BusinessSolutionOrder AS _BusinessSolutionOrder ON BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder  -- association [1..1]
;