C_MatlLdgrPrChangedByUserVH

DDL: C_MATLLDGRPRCHANGEDBYUSERVH Type: view_entity CONSUMPTION

Changed By

C_MatlLdgrPrChangedByUserVH is a Consumption CDS View that provides data about "Changed By" in SAP S/4HANA. It reads from 1 data source (I_MaterialLedgerPrice) and exposes 9 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
I_MaterialLedgerPrice _PriceChange inner

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Changed By view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ContactCardID view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID _User ContactCardID
MaterialPriceChangedByUser _User ContactCardID
FirstName _User FirstName
LastName _User LastName
FullName _User FullName
Department _User Department
EmailAddress _User EmailAddress
PhoneNumber _User PhoneNumber
MobilePhoneNumber _User MobilePhoneNumber
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Changed By'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
    serviceQuality: #C,
    sizeCategory: #XL,
    dataClass: #MIXED
}
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ContactCardID'
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
define view entity C_MatlLdgrPrChangedByUserVH
  as select distinct from I_UserContactCard as _User
      inner join            I_MaterialLedgerPrice as _PriceChange on _PriceChange.MaterialPriceChangedByUser = _User.ContactCardID
{

      @UI.hidden: true
  key _User.ContactCardID,

      @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.8
      }
      @ObjectModel.text.element: [ 'FullName' ]
      _User.ContactCardID as MaterialPriceChangedByUser,
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8
      }
      _User.FirstName,
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8
      }
      _User.LastName,
      @Semantics.text: true
      _User.FullName,
      _User.Department,
      _User.EmailAddress,
      _User.PhoneNumber,
      _User.MobilePhoneNumber
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALLEDGERPRICE",
"I_USERCONTACTCARD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/