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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | I_User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaterialDocumentRecord | _MaterialDocument | UserID = _MaterialDocument.CreatedByUser |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMATLDOCUSERVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | 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 |
@AbapCatalog.sqlViewName: 'IMATLDOCUSERVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl:{
authorizationCheck: #CHECK,
personalData:{
blocking:#NOT_REQUIRED
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@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 I_MatlDocUserVH
as select from I_User //nsdm_d_mtdcsa
association [0..*] to I_MaterialDocumentRecord as _MaterialDocument on 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORD"
],
"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