A_ServiceRequestPersonResp

DDL: A_SERVICEREQUESTPERSONRESP Type: view COMPOSITE Package: ODATA_CRMS4_SERVICEREQUEST

Person Responsible for Service Request

A_ServiceRequestPersonResp is a Composite CDS View that provides data about "Person Responsible for Service Request" in SAP S/4HANA. It reads from 1 data source (I_CustMgmtPartner) and exposes 3 fields with key fields ServiceRequest, PersonResponsible. It has 1 association to related views. Part of development package ODATA_CRMS4_SERVICEREQUEST.

Data Sources (1)

SourceAliasJoin Type
I_CustMgmtPartner I_CustMgmtPartner from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceRequest _ServiceRequest $projection.ServiceRequest = _ServiceRequest.ServiceRequest

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Person Responsible for Service Request view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVREQPERSRESP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled 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 ServiceRequest CustMgmtDocument
KEY PersonResponsible CustMgmtBusinessPartner
_ServiceRequest _ServiceRequest
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Person Responsible for Service Request'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ASRVREQPERSRESP',
  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_ServiceRequestPersonResp
  as select from I_CustMgmtPartner

  association [1] to A_ServiceRequest as _ServiceRequest on $projection.ServiceRequest = _ServiceRequest.ServiceRequest
{

  key CustMgmtDocument        as ServiceRequest,
  key CustMgmtBusinessPartner as PersonResponsible,

      //Associations

      _ServiceRequest

}

where
      CustMgmtObjectType           = 'BUS2000223'
  and CustMgmtDocumentItem         is initial
  and CustMgmtPartFunctionCategory = '0008'