C_ChmlContactData
Contact Information Last Changed By User
C_ChmlContactData is a Consumption CDS View that provides data about "Contact Information Last Changed By User" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 4 fields with key field ContactCardID. Part of development package EHFND_PRODUCT_MASTER_COMN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UserContactCard | I_UserContactCard | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Contact Information Last Changed By User | view | |
| AbapCatalog.sqlViewName | CCCONTACTUSER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ContactCardID | ContactCardID | ||
| FullName | FullName | |||
| EmailAddress | EmailAddress | |||
| PhoneNumber | PhoneNumber |
@EndUserText.label: 'Contact Information Last Changed By User'
@AbapCatalog:
{
sqlViewName: 'CCCONTACTUSER',
compiler.compareFilter: true
}
@AccessControl:
{
// authorization check is performed via calling CDS views using privilegedAssociations
authorizationCheck: #PRIVILEGED_ONLY,
// blocking of personal data not required (user data can not be blocked and no business partner data exposed from user)
personalData.blocking: #NOT_REQUIRED
}
@VDM.viewType: #CONSUMPTION
@ObjectModel:
{
usageType:
{
dataClass: #TRANSACTIONAL,
sizeCategory: #L,
serviceQuality: #C
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
define view C_ChmlContactData
as select from I_UserContactCard
{
key ContactCardID,
FullName,
EmailAddress,
PhoneNumber
}
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