I_BPCURRENTDEFAULTADDRESSPROC
BP current default address in Process
I_BPCURRENTDEFAULTADDRESSPROC is a CDS View in S/4HANA. BP current default address in Process. It contains 1 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_BPCurrentDefaultAddressGov | view | from | COMPOSITE | BP Current Default Address (Governance) |
| I_MDProcAnlytsBP | view | left_outer | COMPOSITE | Business Partner Process Analytics Data |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| AddressNumber | AddressNumber | 1 |
@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,
key AddressNumber,
_BusinessPartnerAddress.ValidityStartDate as ValidityStartDateTime,
_BusinessPartnerAddress.ValidityEndDate as ValidityEndDateTime,
_BusinessPartner
}