C_APMUserContactCard
APM User Contact Card
C_APMUserContactCard is a Consumption CDS View that provides data about "APM User Contact Card" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 6 fields with key field ContactCardID. It is exposed through 2 OData services (UI_IHBACCOUNTFEETP, UI_IHBACCTINTRSTCOMPNOBJTP). It is used in 2 Fiori applications: Manage In-House Bank Fees, Manage In-House Bank Interest Compensation.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UserContactCard | I_UserContactCard | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | APM User Contact Card | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #NONE | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_IHBACCOUNTFEETP | UI_IHBACCOUNTFEETP | V2 | C1 | NOT_RELEASED |
| UI_IHBACCTINTRSTCOMPNOBJTP | UI_IHBACCTINTRSTCOMPNOBJTP | V2 | C1 | NOT_RELEASED |
Fiori Apps (2)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F6335 | Manage In-House Bank Fees | Transactional | Manage in-house bank interest compensation hierarchies. |
| F6652 | Manage In-House Bank Interest Compensation | Transactional | Manage in-house bank interest compensation hierarchies. |
Manage In-House Bank Fees
Business Role: Payment Specialist
With this app, you can define fees for your monthly account maintenance and for processing transactions. The account maintenance fee is a monthly fee that will be charged when you set up an account. Transaction fees are calculated on a monthly basis and you can define them in three different levels.
Manage In-House Bank Interest Compensation
Business Role: Payment Specialist
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ContactCardID | ContactCardID | ||
| FullName | FullName | |||
| PhoneNumber | PhoneNumber | |||
| MobilePhoneNumber | MobilePhoneNumber | |||
| ContactFaxNumber | FaxNumber | |||
| EmailAddress | EmailAddress |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck:#MANDATORY
@EndUserText.label: 'APM User Contact Card'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
@VDM.usage.type: [ #TRANSACTIONAL_PROCESSING_SERVICE ]
@VDM.lifecycle.contract.type: #NONE
define view entity C_APMUserContactCard
as select from I_UserContactCard
{
@Semantics.contact.type: #PERSON
@ObjectModel.filter.enabled: false
key ContactCardID,
@Semantics.name.fullName: true
@ObjectModel.filter.enabled: false
FullName,
@Semantics.telephone.type: [ #WORK ]
@ObjectModel.filter.enabled: false
PhoneNumber,
@Semantics.telephone.type: [ #CELL ]
@ObjectModel.filter.enabled: false
MobilePhoneNumber,
@Semantics.telephone.type: [ #FAX ]
@ObjectModel.filter.enabled: false
FaxNumber as ContactFaxNumber,
@Semantics.eMail.address: true
@Semantics.eMail.type: [#WORK]
@ObjectModel.filter.enabled: false
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