I_USERSTATUS
User Status
I_USERSTATUS is a CDS View in S/4HANA. User Status. It contains 3 fields. 6 CDS views read from this table.
CDS Views using this table (6)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_IntOrderOverallUserStatus | view_entity | inner | CONSUMPTION | Internal order overall user status |
| I_EAMObjectUsrStatusWithNumber | view_entity | inner | BASIC | EAM Object User Status with Number |
| I_IntOrderActiveUserStatus | view_entity | inner | COMPOSITE | Internal Order Active User Status |
| P_StatusCode | view | union_all | BASIC | Status Code |
| R_IntOrderNumberedUserStatusTP | view_entity | from | TRANSACTIONAL | Internal order user status with number |
| R_IntOrdUnnumberedUserStatusTP | view_entity | from | TRANSACTIONAL | Int. order user status without number |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | StatusProfile | StatusProfile | 1 |
| StatusAuthorizationKey | StatusAuthorizationKey | 1 | |
| StatusSequenceNumber | StatusSequenceNumber | 1 |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'UserStatus'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'IUSERSTATUS'
@AbapCatalog.preserveKey:true
@EndUserText.label: 'User Status'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
define view I_UserStatus as select from tj30
association [0..*] to I_UserStatusText as _UserStatusText
on $projection.UserStatus = _UserStatusText.UserStatus
and $projection.StatusProfile = _UserStatusText.StatusProfile
association [0..1] to I_StatusProfile as _StatusProfile
on $projection.StatusProfile = _StatusProfile.StatusProfile
{
@ObjectModel.text.association: '_UserStatusText'
key tj30.estat as UserStatus,
@ObjectModel.foreignKey.association: '_StatusProfile'
key tj30.stsma as StatusProfile,
tj30.bersl as StatusAuthorizationKey,
tj30.stonr as StatusSequenceNumber,
tj30.linep as StatusDisplayPosition,
tj30.statp as StatusDisplayPriority ,
_UserStatusText,
_StatusProfile
}