C_MatlLdgrDocUserContactCard
Contact Card
C_MatlLdgrDocUserContactCard is a Consumption CDS View that provides data about "Contact Card" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 7 fields with key field ContactCardID. It is exposed through 1 OData service (FML_DSPMATLPRCHGDOCS). Part of development package ODATA_ML_DSPMATLPRCHGDOCS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UserContactCard | I_UserContactCard | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Contact Card | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.representativeKey | ContactCardID | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| FML_DSPMATLPRCHGDOCS | FML_DSPMATLPRCHGDOCS | V4 | C1 | NOT_RELEASED |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ContactCardID | ContactCardID | ||
| FullName | FullName | |||
| UserDescription | UserDescription | |||
| PhoneNumber | PhoneNumber | |||
| MobilePhoneNumber | MobilePhoneNumber | |||
| EmailAddress | EmailAddress | |||
| Department | Department |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Contact Card'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MIXED
}
@ObjectModel.representativeKey: 'ContactCardID'
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
define view entity C_MatlLdgrDocUserContactCard
as select from I_UserContactCard
{
@UI.facet: [{
targetQualifier: 'UserQuickView',
type: #FIELDGROUP_REFERENCE,
purpose: #QUICK_VIEW }]
@UI.fieldGroup: [{ label: 'User', value: 'ContactCardID', importance: #HIGH, position: 1, qualifier: 'UserQuickView' }]
@ObjectModel: { text.element: ['FullName'] }
@UI.textArrangement: #TEXT_LAST
key ContactCardID,
@UI.fieldGroup: [{ label: 'Full Name', value: 'FullName', importance: #HIGH, position: 2, qualifier: 'UserQuickView' }]
@Semantics.text: true
FullName,
@UI.fieldGroup: [{ label: 'Description', value: 'UserDescription', importance: #HIGH, position: 3, qualifier: 'UserQuickView' }]
UserDescription,
@UI.fieldGroup: [{ label: 'Phone', value: 'PhoneNumber', importance: #LOW, position: 4, qualifier: 'UserQuickView' }]
PhoneNumber,
@UI.fieldGroup: [{ label: 'Mobile', value: 'MobilePhoneNumber', importance: #LOW, position: 5, qualifier: 'UserQuickView' }]
MobilePhoneNumber,
@UI.fieldGroup: [{ label: 'E-Mail', value: 'EmailAddress', importance: #LOW, position: 6, qualifier: 'UserQuickView' }]
EmailAddress,
@UI.fieldGroup: [{ label: 'Department', value: 'Department', importance: #LOW, position: 7, qualifier: 'UserQuickView' }]
Department
}
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