C_ManageJournalEntryUserVH
Manage Journal Entry User
C_ManageJournalEntryUserVH is a Consumption CDS View that provides data about "Manage Journal Entry User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field UserID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | _User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | R_ManageJournalEntry | _ManageJournalEntry | _User.UserID = _ManageJournalEntry.AccountingDocCreatedByUser or _User.UserID = _ManageJournalEntry.ParkedByUser |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Manage Journal Entry User | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| ObjectModel.representativeKey | UserID | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@EndUserText.label: 'Manage Journal Entry User'
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.representativeKey: 'UserID'
@VDM: {
viewType: #CONSUMPTION
}
@ObjectModel:{
usageType: {
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MIXED
},
dataCategory: #VALUE_HELP
}
define view entity C_ManageJournalEntryUserVH
as select from I_User as _User
association [0..*] to R_ManageJournalEntry as _ManageJournalEntry on _User.UserID = _ManageJournalEntry.AccountingDocCreatedByUser
or _User.UserID = _ManageJournalEntry.ParkedByUser
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: ['UserDescription']
@UI.textArrangement: #TEXT_LAST
key _User.UserID,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_User.UserDescription,
cast (IsTechnicalUser as fco_io_is_technical_user preserving type ) as IsTechnicalUser,
// For Access control
@Consumption.hidden: true
_ManageJournalEntry
}
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