I_BPCURRENTDEFAULTADDRESSPROC

CDS View

BP current default address in Process

I_BPCURRENTDEFAULTADDRESSPROC is a CDS View in S/4HANA. BP current default address in Process. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BPCurrentDefaultAddressGov view from COMPOSITE BP Current Default Address (Governance)
@AbapCatalog.sqlViewName: 'IBPCRRDFADDRPROC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@EndUserText.label: 'BP current default address in Process'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
@AbapCatalog.preserveKey:true
define view I_BPCurrentDefaultAddressProc
  as select from P_BPCurrentDefaultAddressProc
  association [1..1] to I_BusinessPartnerAddressProc as _BusinessPartnerAddress on  $projection.MasterDataChangeProcess = _BusinessPartnerAddress.MasterDataChangeProcess
                                                                                and $projection.MDChgProcessStep        = _BusinessPartnerAddress.MDChgProcessStep
                                                                                and $projection.MDChgProcessSrceSystem  = _BusinessPartnerAddress.MDChgProcessSrceSystem
                                                                                and $projection.MDChgProcessSrceObject  = _BusinessPartnerAddress.MDChgProcessSrceObject
                                                                                and $projection.AddressNumber           = _BusinessPartnerAddress.AddressNumber
  association [1..1] to I_BusinessPartnerProcess     as _BusinessPartner        on  $projection.MasterDataChangeProcess = _BusinessPartner.MasterDataChangeProcess
                                                                                and $projection.MDChgProcessStep        = _BusinessPartner.MDChgProcessStep
                                                                                and $projection.MDChgProcessSrceSystem  = _BusinessPartner.MDChgProcessSrceSystem
                                                                                and $projection.MDChgProcessSrceObject  = _BusinessPartner.MDChgProcessSrceObject
  //TODO protected address

{
  key MasterDataChangeProcess,
  key MDChgProcessStep,
  key MDChgProcessSrceSystem,
  key MDChgProcessSrceObject,
      AddressNumber,
      _BusinessPartnerAddress.ValidityStartDate as ValidityStartDateTime,
      _BusinessPartnerAddress.ValidityEndDate   as ValidityEndDateTime,

      _BusinessPartner
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSPARTNERADDRESSPROC",
"P_BPCURRENTDEFAULTADDRESSPROC"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNERADDRESSPROC",
"I_BUSINESSPARTNERPROCESS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/