I_LCMUserAddressAssignment

DDL: I_LCMUSERADDRESSASSIGNMENT SQL: ILCMUSRADDRASSGN Type: view BASIC

User Name/Address Key Assignment

I_LCMUserAddressAssignment is a Basic CDS View that provides data about "User Name/Address Key Assignment" in SAP S/4HANA. It reads from 1 data source (usr21) and exposes 6 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
usr21 _User from

Annotations (12)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID usr21 bname User name
Person usr21 persnumber Person Number
BusinessPartnerUUID usr21 bpperson BP GUID
AddressID usr21 addrnumber Address Number
FullName usr21 techdesc Description
UserID usr21 bname User name

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_LCMUserAddressAssignment.
-- 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: ILCMUSRADDRASSGN

CREATE VIEW I_LCMUserAddressAssignment AS
SELECT
  _User.bname AS ContactCardID,
  _User.persnumber AS Person,
  _User.bpperson AS BusinessPartnerUUID,
  _User.addrnumber AS AddressID,
  _User.techdesc AS FullName,
  _User.bname AS UserID
FROM usr21 AS _User
;