I_BPIDENTIFICATIONPROCESS
Shows the ID data for BP in a Process
I_BPIDENTIFICATIONPROCESS is a CDS View in S/4HANA. Shows the ID data for BP in a Process. It contains 7 fields. 4 CDS views read from this table.
CDS Views using this table (4)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_BPIdentificationProcessTP | view_entity | from | TRANSACTIONAL | View for ID data for BP in processes |
| I_BPProcIdentificationChanges | view | from | TRANSACTIONAL | BP Identification Process Changes |
| I_BPProcIdentificationChanges | view | union_all | TRANSACTIONAL | BP Identification Process Changes |
| I_BusPartIdentificationGov | view | from | COMPOSITE | BP Identification Governance |
Fields (7)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | BPIdentificationNumber | BPIdentificationNumber | 1 |
| KEY | BPIdentificationType | BPIdentificationType | 1 |
| KEY | MasterDataChangeProcess | MasterDataChangeProcess | 1 |
| KEY | MDChgProcessSrceObject | MDChgProcessSrceObject | 1 |
| KEY | MDChgProcessSrceSystem | MDChgProcessSrceSystem | 1 |
| KEY | MDChgProcessStep | MDChgProcessStep | 1 |
| MDChgProcessSourceModified | MDChgProcessSourceModified | 1 |
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Shows the ID data for BP in a Process'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.viewType: #BASIC
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity I_BPIdentificationProcess
as select from but0id_prc
association [1..1] to I_BusinessPartnerProcess as _BusinessPartner on but0id_prc.process_id = _BusinessPartner.MasterDataChangeProcess
and but0id_prc.process_step_no = _BusinessPartner.MDChgProcessStep
and but0id_prc.source_system = _BusinessPartner.MDChgProcessSrceSystem
and but0id_prc.source_id = _BusinessPartner.MDChgProcessSrceObject
{
//but0id_prc
key process_id as MasterDataChangeProcess,
key process_step_no as MDChgProcessStep,
key source_system as MDChgProcessSrceSystem,
key source_id as MDChgProcessSrceObject,
key type as BPIdentificationType,
key idnumber as BPIdentificationNumber,
partner as BusinessPartner,
institute as BPIdnNmbrIssuingInstitute,
entry_date as BPIdentificationEntryDate,
valid_date_from as ValidityStartDate,
valid_date_to as ValidityEndDate,
country as Country,
region as Region,
// idnumber_guid,
// bp_eew_but0id,
// source_recency,
source_modified as MDChgProcessSourceModified,
source_modification_blip as MDChgProcessSourceModifBinary,
source_recency as MDChgProcSrceLastChgdDateTime,
// source_index
_BusinessPartner
}