I_GhoUserStatus_Db
User Status for UOM
I_GhoUserStatus_Db is a Basic CDS View (Dimension) that provides data about "User Status for UOM" in SAP S/4HANA. It reads from 1 data source (I_UserStatus) and exposes 4 fields with key fields StatusProfile, UserStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UserStatus | I_UserStatus | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGHOUSERSTATUSDB | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | UserStatus | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | User Status for UOM | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusProfile | I_UserStatus | StatusProfile | |
| KEY | UserStatus | I_UserStatus | UserStatus | |
| _StatusProfile | I_UserStatus | _StatusProfile | ||
| _UserStatusText | I_UserStatus | _UserStatusText |
@AbapCatalog.sqlViewName: 'IGHOUSERSTATUSDB'
@VDM.viewType: #BASIC
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'UserStatus'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'User Status for UOM'
define view I_GhoUserStatus_Db
as select from I_UserStatus
{
@ObjectModel.foreignKey.association: '_StatusProfile'
key I_UserStatus.StatusProfile,
key I_UserStatus.UserStatus,
/* Associations */
I_UserStatus._StatusProfile,
I_UserStatus._UserStatusText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USERSTATUS"
],
"ASSOCIATED":
[
"I_STATUSPROFILE",
"I_USERSTATUSTEXT"
],
"BASE":
[
"I_USERSTATUS"
],
"VERSION":0
}
}*/
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