C_ChmlContactData

DDL: C_CHMLCONTACTDATA Type: view CONSUMPTION Package: EHFND_PRODUCT_MASTER_COMN

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)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (10)

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

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