I_MatlDocUserVH
Invtry Management postings on user
I_MatlDocUserVH is a Basic CDS View that provides data about "Invtry Management postings on user" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field CreatedByUser. It has 1 association to related views. Part of development package MM_IM_VDM_VALUE_HELP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | I_User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaterialDocumentRecord | _MaterialDocument | I_User.UserID = _MaterialDocument.CreatedByUser |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Invtry Management postings on user | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CreatedByUser | UserID | Created By | |
| UserDescription | UserDescription | |||
| _MaterialDocument | _MaterialDocument |
@AccessControl:{
authorizationCheck: #CHECK,
personalData:{
blocking:#NOT_REQUIRED
}
}
@EndUserText.label: 'Invtry Management postings on user'
@ObjectModel: {
usageType: {
sizeCategory: #L,
serviceQuality: #C,
dataClass:#MIXED
},
dataCategory: #VALUE_HELP
}
@VDM:{
private:false,
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@Consumption.ranked: true
define view entity I_MatlDocUserVH
as select from I_User //nsdm_d_mtdcsa
association [0..*] to I_MaterialDocumentRecord as _MaterialDocument on I_User.UserID = _MaterialDocument.CreatedByUser
{
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
@EndUserText.label: 'Created By'
key UserID as CreatedByUser,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
UserDescription,
@UI.hidden: true
_MaterialDocument
}
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