I_BPAddressTextProcess

DDL: I_BPADDRESSTEXTPROCESS Type: view_entity

Base View for BUT_ADRCT_PRC

I_BPAddressTextProcess is a CDS View that provides data about "Base View for BUT_ADRCT_PRC" in SAP S/4HANA. It reads from 1 data source (but_adrct_prc) and exposes 15 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, AddressNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
but_adrct_prc but_adrct_prc from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartnerProcess _BusinessPartner but_adrct_prc.process_id = _BusinessPartner.MasterDataChangeProcess and but_adrct_prc.process_step_no = _BusinessPartner.MDChgProcessStep and but_adrct_prc.source_system = _BusinessPartner.MDChgProcessSrceSystem and but_adrct_prc.source_id = _BusinessPartner.MDChgProcessSrceObject
[0..1] I_BPProtectedAddress _BPProtectedAddress but_adrct_prc.source_id = _BPProtectedAddress.BusinessPartner and but_adrct_prc.source_addrnumber = _BPProtectedAddress.AddressID

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Base View for BUT_ADRCT_PRC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess process_id Process Instance ID
KEY MDChgProcessStep process_step_no Step Number
KEY MDChgProcessSrceSystem source_system Source System
KEY MDChgProcessSrceObject source_id UUID
KEY AddressNumber source_addrnumber Src Address No
KEY AddressRepresentationCode nation Country/Region
KEY Language langu Primary lang.
AddressValidFromDate date_from Validity Start Date
AddressRemarkNote remark Status Description
DataAgingObject _dataaging Data Aging
MDChgProcSrceLastChgdDateTime source_recency Last Changed On
MDChgProcessSourceModified source_modified Modified
MDChgProcessSourceModifBinary source_modification_blip Modification
_BusinessPartner _BusinessPartner
_BPProtectedAddress _BPProtectedAddress

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_BPAddressTextProcess.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_BPAddressTextProcess AS
SELECT
  process_id AS MasterDataChangeProcess,
  process_step_no AS MDChgProcessStep,
  source_system AS MDChgProcessSrceSystem,
  source_id AS MDChgProcessSrceObject,
  source_addrnumber AS AddressNumber,
  nation AS AddressRepresentationCode,
  langu AS Language,
  date_from AS AddressValidFromDate,
  remark AS AddressRemarkNote,
  source_recency AS MDChgProcSrceLastChgdDateTime,
  source_modified AS MDChgProcessSourceModified,
  source_modification_blip AS MDChgProcessSourceModifBinary
FROM but_adrct_prc
LEFT OUTER JOIN I_BusinessPartnerProcess AS _BusinessPartner ON but_adrct_prc.process_id = _BusinessPartner.MasterDataChangeProcess AND but_adrct_prc.process_step_no = _BusinessPartner.MDChgProcessStep AND but_adrct_prc.source_system = _BusinessPartner.MDChgProcessSrceSystem AND but_adrct_prc.source_id = _BusinessPartner.MDChgProcessSrceObject  -- association [1..1]
LEFT OUTER JOIN I_BPProtectedAddress AS _BPProtectedAddress ON but_adrct_prc.source_id = _BPProtectedAddress.BusinessPartner AND but_adrct_prc.source_addrnumber = _BPProtectedAddress.AddressID  -- association [0..1]
;