C_MatlLdgrDocUserContactCard

DDL: C_MATLLDGRDOCUSERCONTACTCARD Type: view_entity CONSUMPTION Package: ODATA_ML_DSPMATLPRCHGDOCS

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)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (8)

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

ServiceBindingVersionContractRelease
FML_DSPMATLPRCHGDOCS FML_DSPMATLPRCHGDOCS V4 C1 NOT_RELEASED

Fields (7)

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