I_LCMUserAddress

DDL: I_LCMUSERADDRESS SQL: ILCMUSERADDRESS Type: view BASIC

Address

I_LCMUserAddress is a Basic CDS View that provides data about "Address" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LCMPersonAddrAssignment _PersonAddrAssignment _PersonAddrAssignment.AddressNumber = $projection.AddressNumber

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMUSERADDRESS 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
EndUserText.label Address view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AddressNumber adrc addrnumber Address Number
ValidityStartDate adrc date_from Validity Start Date
ValidityEndDate adrc date_to Validity End Date
_PersonAddrAssignment _PersonAddrAssignment

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_LCMUserAddress.
-- 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: ILCMUSERADDRESS

CREATE VIEW I_LCMUserAddress AS
SELECT
  adrc.addrnumber AS AddressNumber,
  adrc.date_from AS ValidityStartDate,
  adrc.date_to AS ValidityEndDate
LEFT OUTER JOIN I_LCMPersonAddrAssignment AS _PersonAddrAssignment ON _PersonAddrAssignment.AddressNumber = AddressNumber  -- association [0..*]
;