P_EAMUserStatusSequence
EAM User Status Sequence
P_EAMUserStatusSequence is a Basic CDS View that provides data about "EAM User Status Sequence" in SAP S/4HANA. It reads from 2 data sources (tj30, tj30) and exposes 3 fields with key fields StatusProfile, UserStatus, FollowOnUserStatus. Part of development package EAM_OVRL_STS.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PEAMUSRSTATSEQ | view |
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PEAMUSRSTATSEQ'
define view P_EAMUserStatusSequence
as select from tj30 as _this
left outer join tj30 as _next on _next.stsma = _this.stsma
and _next.stonr <> _this.stonr
and _next.stonr <= _this.hsonr
and _next.stonr >= _this.nsonr
{
key _this.stsma as StatusProfile,
key _this.estat as UserStatus,
key _next.estat as FollowOnUserStatus
}
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