A_ServiceConfItmRefObject
Reference Obj. of Srvc Confirmation Item
A_ServiceConfItmRefObject is a Composite CDS View that provides data about "Reference Obj. of Srvc Confirmation Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentRefObject) and exposes 6 fields with key fields ServiceConfirmation, ServiceConfirmationItem, ServiceReferenceEquipment, ServiceRefFunctionalLocation. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentRefObject | I_ServiceDocumentRefObject | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceConfirmation | _ServiceConfirmation | $projection.ServiceConfirmation = _ServiceConfirmation.ServiceConfirmation |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Reference Obj. of Srvc Confirmation Item | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ASRVCONITMREFOBJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceConfirmation | ServiceDocument | ||
| KEY | ServiceConfirmationItem | ServiceDocumentItem | ||
| KEY | ServiceReferenceEquipment | Equipment | ||
| KEY | ServiceRefFunctionalLocation | FunctionalLocation | ||
| SrvcRefObjIsMainObject | SrvcRefObjIsMainObject | |||
| _ServiceConfirmation | _ServiceConfirmation |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Reference Obj. of Srvc Confirmation Item'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ASRVCONITMREFOBJ',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_ServiceConfItmRefObject
as select from I_ServiceDocumentRefObject
association [1] to A_ServiceConfirmation as _ServiceConfirmation on $projection.ServiceConfirmation = _ServiceConfirmation.ServiceConfirmation
{
key ServiceDocument as ServiceConfirmation,
key ServiceDocumentItem as ServiceConfirmationItem,
key Equipment as ServiceReferenceEquipment,
key FunctionalLocation as ServiceRefFunctionalLocation,
// key ProductID as ServiceReferenceProduct,
SrvcRefObjIsMainObject,
//Associations
_ServiceConfirmation
}
where
ServiceObjectType = 'BUS2000117' // Service Confirmation
and(
Equipment is not initial
or FunctionalLocation is not initial
)
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