A_ServiceContrItemObjectList

DDL: A_SERVICECONTRITEMOBJECTLIST Type: view CONSUMPTION

Item Object List

A_ServiceContrItemObjectList is a Consumption CDS View that provides data about "Item Object List" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentRefObject) and exposes 7 fields with key fields ServiceContract, ServiceContractItem, ServiceRefObjectSequenceNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentRefObject ServiceContractItemObjectList from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceContractItem _ServiceContractItem $projection.ServiceContract = _ServiceContractItem.ServiceContract and $projection.ServiceContractItem = _ServiceContractItem.ServiceContractItem

Annotations (15)

NameValueLevelField
EndUserText.label Item Object List view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ASRVCTRITMOBJL 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 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 (7)

KeyFieldSource TableSource FieldDescription
KEY ServiceContract ServiceDocument Transaction ID
KEY ServiceContractItem ServiceDocumentItem Service Document
KEY ServiceRefObjectSequenceNumber ServiceRefObjectSequenceNumber Version
Product ProductID Product ID
Equipment Equipment Equipment check
ServiceRefFunctionalLocation FunctionalLocation Object ID
_ServiceContractItem _ServiceContractItem

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_ServiceContrItemObjectList.
-- 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_ServiceContrItemObjectList AS
SELECT
  ServiceDocument AS ServiceContract,
  ServiceDocumentItem AS ServiceContractItem,
  ServiceRefObjectSequenceNumber,
  ProductID AS Product,
  Equipment,
  FunctionalLocation AS ServiceRefFunctionalLocation
FROM I_ServiceDocumentRefObject AS ServiceContractItemObjectList
LEFT OUTER JOIN A_ServiceContractItem AS _ServiceContractItem ON ServiceContract = _ServiceContractItem.ServiceContract AND ServiceContractItem = _ServiceContractItem.ServiceContractItem  -- association [1]
;