A_ServiceContrItemObjectList
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. Part of development package ODATA_CRMS4_SERVICECONTRACT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentRefObject | ServiceContractItemObjectList | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceContractItem | _ServiceContractItem | $projection.ServiceContract = _ServiceContractItem.ServiceContract and $projection.ServiceContractItem = _ServiceContractItem.ServiceContractItem |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceContract | ServiceDocument | ||
| KEY | ServiceContractItem | ServiceDocumentItem | ||
| KEY | ServiceRefObjectSequenceNumber | ServiceRefObjectSequenceNumber | ||
| Product | ProductID | |||
| Equipment | Equipment | |||
| ServiceRefFunctionalLocation | FunctionalLocation | |||
| _ServiceContractItem | _ServiceContractItem |
@EndUserText.label: 'Item Object List'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ASRVCTRITMOBJL',
compiler.compareFilter: true,
preserveKey: true
}
@VDM: {
viewType: #CONSUMPTION,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: false,
updateEnabled: false,
deleteEnabled: false,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_ServiceContrItemObjectList
as select from I_ServiceDocumentRefObject as ServiceContractItemObjectList
association [1] to A_ServiceContractItem as _ServiceContractItem on $projection.ServiceContract = _ServiceContractItem.ServiceContract
and $projection.ServiceContractItem = _ServiceContractItem.ServiceContractItem
{
key ServiceDocument as ServiceContract,
key ServiceDocumentItem as ServiceContractItem,
key ServiceRefObjectSequenceNumber,
ProductID as Product,
Equipment,
FunctionalLocation as ServiceRefFunctionalLocation,
_ServiceContractItem
}
where
ServiceObjectType = 'BUS2000112'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA