I_InternalOrderUserVH
Internal order user
I_InternalOrderUserVH is a Composite CDS View that provides data about "Internal order 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 | I_User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_InternalOrder | _InternalOrder | I_User.UserID = _InternalOrder.CreatedByUser or I_User.UserID = _InternalOrder.LastChangedByUser or I_User.UserID = _InternalOrder.InternalOrderResponsibleUser |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Internal order user | view | |
| Search.searchable | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | UserID | ||
| UserDescription | UserDescription | |||
| IsTechnicalUser | ||||
| _InternalOrder | _InternalOrder |
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@EndUserText.label: 'Internal order user'
@Search.searchable: true
@VDM: {
viewType: #COMPOSITE
}
@ObjectModel:{
usageType: {
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MIXED
},
dataCategory: #VALUE_HELP
}
@Consumption.ranked: true
define view entity I_InternalOrderUserVH
as select from I_User
association [0..*] to I_InternalOrder as _InternalOrder on I_User.UserID = _InternalOrder.CreatedByUser
or I_User.UserID = _InternalOrder.LastChangedByUser
or I_User.UserID = _InternalOrder.InternalOrderResponsibleUser
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: ['UserDescription']
@UI.textArrangement: #TEXT_LAST
key UserID,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
UserDescription,
cast (IsTechnicalUser as fco_io_is_technical_user preserving type ) as IsTechnicalUser,
// For Access control
_InternalOrder
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER"
],
"ASSOCIATED":
[
"I_INTERNALORDER"
],
"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