A_ServiceOrderConfirmation

DDL: A_SERVICEORDERCONFIRMATION Type: view COMPOSITE

Service Confirmations

A_ServiceOrderConfirmation is a Composite CDS View that provides data about "Service Confirmations" in SAP S/4HANA. It reads from 1 data source (P_ServiceOrderConfirmation) and exposes 3 fields with key fields ServiceOrder, ServiceConfirmation. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_ServiceOrderConfirmation ServiceOrderConfirmation from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceOrder _ServiceOrder $projection.ServiceOrder = _ServiceOrder.ServiceOrder

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Service Confirmations view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVORDCONF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrder ServiceOrder
KEY ServiceConfirmation ServiceConfirmation
_ServiceOrder _ServiceOrder
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Service Confirmations'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ASRVORDCONF',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true

define view A_ServiceOrderConfirmation
  as select from P_ServiceOrderConfirmation as ServiceOrderConfirmation

  association [1] to A_ServiceOrder as _ServiceOrder on $projection.ServiceOrder = _ServiceOrder.ServiceOrder
{

  key ServiceOrder,
  key ServiceConfirmation,

      //Associations

      _ServiceOrder

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_SERVICEORDERCONFIRMATION"
],
"ASSOCIATED":
[
"A_SERVICEORDER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/