C_MatlLdgrPrChangedByUserVH
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)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialLedgerPrice | _PriceChange | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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