I_LCMPersonAddrAssignment

DDL: I_LCMPERSONADDRASSIGNMENT SQL: ILCMPERSADDR Type: view BASIC

Person Address Assignment

I_LCMPersonAddrAssignment is a Basic CDS View that provides data about "Person Address Assignment" in SAP S/4HANA. It reads from 1 data source (adcp) and exposes 7 fields with key fields AddressNumber, PersonNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
adcp adcp from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_LCMUserAddress _UserAddress $projection.AddressNumber = _UserAddress.AddressNumber
[1..1] I_LCMPerson _Person $projection.PersonNumber = _Person.PersonNumber

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMPERSADDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AddressNumber view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Person Address Assignment view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AddressNumber adcp addrnumber Address Number
KEY PersonNumber adcp persnumber Person Number
Department adcp department Department
ValidityStartDate adcp date_from Validity Start Date
ValidityEndDate adcp date_to Validity End Date
_UserAddress _UserAddress
_Person _Person

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_LCMPersonAddrAssignment.
-- 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.
-- SQL view name: ILCMPERSADDR

CREATE VIEW I_LCMPersonAddrAssignment AS
SELECT
  adcp.addrnumber AS AddressNumber,
  adcp.persnumber AS PersonNumber,
  adcp.department AS Department,
  adcp.date_from AS ValidityStartDate,
  adcp.date_to AS ValidityEndDate
FROM adcp
LEFT OUTER JOIN I_LCMUserAddress AS _UserAddress ON AddressNumber = _UserAddress.AddressNumber  -- association [1..1]
LEFT OUTER JOIN I_LCMPerson AS _Person ON PersonNumber = _Person.PersonNumber  -- association [1..1]
;