C_ProfitCenterUserContactCard
Profit Center User Contact Card
C_ProfitCenterUserContactCard is a Consumption CDS View that provides data about "Profit Center User Contact Card" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 8 fields with key field ContactCardID. It has 1 association to related views. It is exposed through 1 OData service (UI_PROFITCENTER_MANAGE). Part of development package RAP_FIN_GL_PROFIT_CENTER_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UserContactCard | I_UserContactCard | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProfitCenter | _ProfitCenter | _ProfitCenter.ProfitCenterCreatedByUser = $projection.ContactCardID |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.representativeKey | ContactCardID | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Profit Center User Contact Card | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_PROFITCENTER_MANAGE | UI_PROFITCENTER_MANAGE | V4 | C1 | NOT_RELEASED |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ContactCardID | ContactCardID | ||
| FullName | FullName | |||
| UserDescription | UserDescription | |||
| PhoneNumber | PhoneNumber | |||
| MobilePhoneNumber | MobilePhoneNumber | |||
| EmailAddress | ||||
| Department | Department | |||
| _ProfitCenter | _ProfitCenter |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel.usageType:{
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #XL
}
@ObjectModel.representativeKey: 'ContactCardID'
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Profit Center User Contact Card'
@Metadata.ignorePropagatedAnnotations: true
define view entity C_ProfitCenterUserContactCard
as select from I_UserContactCard
association [0..*] to I_ProfitCenter as _ProfitCenter on _ProfitCenter.ProfitCenterCreatedByUser = $projection.ContactCardID
{
@UI: {
facet: [{
targetQualifier: 'UserQuickView',
type: #FIELDGROUP_REFERENCE,
purpose: #QUICK_VIEW }],
fieldGroup: [{
importance: #HIGH,
position: 1,
qualifier: 'UserQuickView' }],
textArrangement: #TEXT_LAST }
@ObjectModel: { text.element: ['FullName'] }
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8 }
key ContactCardID,
@UI.fieldGroup: [{
importance: #HIGH,
position: 2,
qualifier: 'UserQuickView' }]
@Semantics.text: true
FullName,
@UI.fieldGroup: [{
importance: #HIGH,
position: 3,
qualifier: 'UserQuickView' }]
UserDescription,
@UI.fieldGroup: [{
importance: #LOW,
position: 4,
qualifier: 'UserQuickView' }]
PhoneNumber,
@UI.fieldGroup: [{
importance: #LOW,
position: 5,
qualifier: 'UserQuickView' }]
MobilePhoneNumber,
@UI.fieldGroup: [{
importance: #LOW,
position: 6,
qualifier: 'UserQuickView' }]
cast( EmailAddress as ad_smtpadr ) as EmailAddress,
@UI.fieldGroup: [{
importance: #LOW,
position: 7,
qualifier: 'UserQuickView' }]
Department,
@Consumption.hidden: true
_ProfitCenter
}
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