I_MDChangeProcessRecordTarget

DDL: I_MDCHANGEPROCESSRECORDTARGET SQL: IMDRECTARGET Type: view BASIC Package: MDC_MODEL

MD Consolidation Record Target

I_MDChangeProcessRecordTarget is a Basic CDS View that provides data about "MD Consolidation Record Target" in SAP S/4HANA. It reads from 1 data source (mdc_recordtarget) and exposes 7 fields with key fields MasterDataChangeProcess, MDChgProcessSrceSystem, MDChgProcessSrceObject, MDChgProcessSrceObjectTypeCode. It is exposed through 7 OData services (C_MDCHGPRCBPHDETAILSTP_SRV, C_MDCHGPRCBPHDETAILSTP_SRV, C_MDCHGPRCBPHDETAILSTP_SRV, ...). Part of development package MDC_MODEL.

Data Sources (1)

SourceAliasJoin Type
mdc_recordtarget mdc_recordtarget from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMDRECTARGET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MD Consolidation Record Target view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (7)

ServiceBindingVersionContractRelease
C_MDCHGPRCBPHDETAILSTP_SRV C_MDCHGPRCBPHDETAILSTP_SRV V2 C1 NOT_RELEASED
C_MDCHGPRCBPHDETAILSTP_SRV C_MDCHGPRCBPHDETAILSTP_V2 V2 C1 NOT_RELEASED
C_MDCHGPRCBPHDETAILSTP_SRV C_MDCHGPRCBPHDETAILSTP_V4 V4 C1 NOT_RELEASED
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_SRV V2 C1 NOT_RELEASED
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_V2 V2 C1 NOT_RELEASED
C_MDCHGPROCBPRELDETAILSTP_SRV C_MDCHGPROCBPRELDETTP_SRV V2 C1 NOT_RELEASED
C_MDCHGPROCBPRELDETAILSTP_SRV C_MDCHGPROCBPRELDETTP_V2 V2 C1 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess process_id
KEY MDChgProcessSrceSystem source_system
KEY MDChgProcessSrceObject source_id
KEY MDChgProcessSrceObjectTypeCode bo_type
MDChgProcessActivationTarget activation
MDChgProcChangeRequestID change_request_id
MDChangeProcessActiveID active_id
@AbapCatalog.sqlViewName: 'IMDRECTARGET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'MD Consolidation Record Target'
@ObjectModel.usageType: {
  serviceQuality: #B,
  sizeCategory: #XXL,
  dataClass: #TRANSACTIONAL
}
@VDM.viewType:#BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_MDChangeProcessRecordTarget
  as select from mdc_recordtarget
  
{
  key process_id        as MasterDataChangeProcess,
  key source_system     as MDChgProcessSrceSystem,
  key source_id         as MDChgProcessSrceObject,
  key bo_type           as MDChgProcessSrceObjectTypeCode,
      activation        as MDChgProcessActivationTarget,
      change_request_id as MDChgProcChangeRequestID,
      active_id         as MDChangeProcessActiveID
}