C_SrvcConfItemSerialNumber
Serial Number for Confirmation Item
C_SrvcConfItemSerialNumber is a Consumption CDS View that provides data about "Serial Number for Confirmation Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentRefObject) and exposes 9 fields with key fields ServiceObjectType, ServiceConfirmation, ServiceConfirmationItem, ServiceRefObjectSequenceNumber. Part of development package CRMS4_SERV_ORDER_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentRefObject | I_ServiceDocumentRefObject | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Serial Number for Confirmation Item | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceObjectType | ServiceObjectType | ||
| KEY | ServiceConfirmation | ServiceDocument | ||
| KEY | ServiceConfirmationItem | ServiceDocumentItem | ||
| KEY | ServiceRefObjectSequenceNumber | ServiceRefObjectSequenceNumber | ||
| SerialNumber | SerialNumber | Serial Number | ||
| Equipment | Equipment | Equipment | ||
| ManufacturerSerialNumber | Manufacturer\ | |||
| EquipmentName | Description | |||
| _Equipment | _Equipment |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Serial Number for Confirmation Item'
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType: #CONSUMPTION
}
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #TRANSACTIONAL
}
define view entity C_SrvcConfItemSerialNumber
as select from I_ServiceDocumentRefObject
{
@UI.hidden: true
key ServiceObjectType,
@UI.hidden: true
key ServiceDocument as ServiceConfirmation,
@UI.hidden: true
key ServiceDocumentItem as ServiceConfirmationItem,
@UI.hidden: true
key ServiceRefObjectSequenceNumber,
@UI: {
lineItem: [ { position: 10 } ]
}
@EndUserText.label: 'Serial Number'
@EndUserText.quickInfo: 'Serial Number'
SerialNumber,
@UI: {
lineItem: [ { position: 30 } ]
}
@EndUserText.label: 'Equipment'
@EndUserText.quickInfo: 'Equipment'
Equipment,
@UI: {
lineItem: [ { position: 40 } ]
}
@EndUserText.label: 'Manufacturer\'s Serial Number'
@EndUserText.quickInfo: 'Manufacturers\'s Serial Number'
_Equipment.ManufacturerSerialNumber,
@UI: {
lineItem: [ { position: 20 } ]
}
@EndUserText.label: 'Description'
@EndUserText.quickInfo: 'Description'
_Equipment._EquipmentText[ 1: Language = $session.system_language ].EquipmentName,
/* Associations */
_Equipment
}
where
ServiceObjectType = 'BUS2000117'
and ServiceReferenceObjectType = 'E'
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