C_APMUserContactCard

DDL: C_APMUSERCONTACTCARD Type: view_entity CONSUMPTION

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)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (8)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_IHBACCOUNTFEETP UI_IHBACCOUNTFEETP V2 C1 NOT_RELEASED
UI_IHBACCTINTRSTCOMPNOBJTP UI_IHBACCTINTRSTCOMPNOBJTP V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
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
}