A_CustMgmtTaskPersonResp

DDL: A_CUSTMGMTTASKPERSONRESP Type: view COMPOSITE

Person Responsible for Task Activity

A_CustMgmtTaskPersonResp is a Composite CDS View that provides data about "Person Responsible for Task Activity" in SAP S/4HANA. It reads from 1 data source (I_CustMgmtPartner) and exposes 3 fields with key fields CustMgmtTask, ResponsibleEmployee. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CustMgmtPartner I_CustMgmtPartner from

Associations (1)

CardinalityTargetAliasCondition
[1] A_CustMgmtTask _CustMgmtTask $projection.CustMgmtTask = _CustMgmtTask.CustMgmtTask

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Person Responsible for Task Activity view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ACUSTMGMTREEM 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 #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CustMgmtTask CustMgmtDocument
KEY ResponsibleEmployee CustMgmtBusinessPartner
_CustMgmtTask _CustMgmtTask
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Person Responsible for Task Activity'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ACUSTMGMTREEM',
  compiler.compareFilter: true,
  preserveKey:true
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: true,
   updateEnabled: true,
   deleteEnabled: true,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true

define view A_CustMgmtTaskPersonResp
  as select from I_CustMgmtPartner

  association [1] to A_CustMgmtTask as _CustMgmtTask on $projection.CustMgmtTask = _CustMgmtTask.CustMgmtTask
{

  key CustMgmtDocument        as CustMgmtTask,
  key CustMgmtBusinessPartner as ResponsibleEmployee,

      //Associations

      _CustMgmtTask
}

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