I_CentralInvoiceUserEmailAddr

DDL: I_CENTRALINVOICEUSEREMAILADDR SQL: ICIUSRMAILADDR Type: view COMPOSITE Package: CIM_INT_ODATA_EXT_SI_MAIN_V2

Email address per user

I_CentralInvoiceUserEmailAddr is a Composite CDS View that provides data about "Email address per user" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 2 fields with key field UserID. Part of development package CIM_INT_ODATA_EXT_SI_MAIN_V2.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic _user from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICIUSRMAILADDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Email address per user view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey UserID view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID I_BusinessUserBasic UserID User Name
EmailAddress

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_CentralInvoiceUserEmailAddr.
-- 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: ICIUSRMAILADDR

CREATE VIEW I_CentralInvoiceUserEmailAddr AS
SELECT
  _user.UserID AS UserID,
  _user._WorkplaceAddress.DefaultEmailAddress AS EmailAddress
FROM I_BusinessUserBasic AS _user
;