A_ServiceConfUserStatus

DDL: A_SERVICECONFUSERSTATUS Type: view COMPOSITE

Service Confirmation User Status

A_ServiceConfUserStatus is a Composite CDS View that provides data about "Service Confirmation User Status" in SAP S/4HANA. It reads from 3 data sources (I_ServiceDocument, I_SrvcMgmtObjectStatus, P_StatusObjectWithGUID) and exposes 3 fields with key fields ServiceConfirmation, SrvcConfUserStatus. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_ServiceDocument ServiceConfirmation inner
I_SrvcMgmtObjectStatus ServiceConfirmationStatus from
P_StatusObjectWithGUID StatusObject inner

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceConfirmation _ServiceConfirmation $projection.ServiceConfirmation = _ServiceConfirmation.ServiceConfirmation

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Service Confirmation User Status view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVCONUSRSTS 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 (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmation I_ServiceDocument ServiceDocument
KEY SrvcConfUserStatus I_SrvcMgmtObjectStatus SrvcMgmtObjectStatus
_ServiceConfirmation _ServiceConfirmation
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Service Confirmation User Status'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ASRVCONUSRSTS',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: true,
  // updateEnabled: true,

   deleteEnabled: true,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #B,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true

define view A_ServiceConfUserStatus
  as select from I_SrvcMgmtObjectStatus as ServiceConfirmationStatus
    inner join   P_StatusObjectWithGUID as StatusObject        on ServiceConfirmationStatus.SrvcMgmtObjectUUID = StatusObject.StatusObjectUUID
    inner join   I_ServiceDocument      as ServiceConfirmation on  ServiceConfirmationStatus.SrvcMgmtObjectUUID   =    ServiceConfirmation.ServiceDocumentUUID
                                                               and ServiceConfirmation.ServiceObjectType          =    'BUS2000117'
                                                               and ServiceConfirmationStatus.SrvcMgmtObjectStatus like 'E%'
                                                               and ServiceConfirmationStatus.SrvcMgmtObjectStatusIsInactive = ' '
  association [1] to A_ServiceConfirmation as _ServiceConfirmation on $projection.ServiceConfirmation = _ServiceConfirmation.ServiceConfirmation
{
  key ServiceConfirmation.ServiceDocument            as ServiceConfirmation,
  key ServiceConfirmationStatus.SrvcMgmtObjectStatus as SrvcConfUserStatus,

      //Associations

      _ServiceConfirmation
}