I_CentralInvoiceUserEmailAddr
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)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessUserBasic | _user | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | I_BusinessUserBasic | UserID | |
| EmailAddress |
@AbapCatalog.sqlViewName: 'ICIUSRMAILADDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Email address per user'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.representativeKey: 'UserID'
define view I_CentralInvoiceUserEmailAddr as select from I_BusinessUserBasic as _user
{
key _user.UserID,
_user._WorkplaceAddress.DefaultEmailAddress as EmailAddress
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA