aps_iam_user_timestamp
Business User Last Changed User
aps_iam_user_timestamp is a CDS View that provides data about "Business User Last Changed User" in SAP S/4HANA. It reads from 2 data sources (aps_user_ddl, usrstamp) and exposes 5 fields with key field UserID. Part of development package SR_APS_IAM_UTILS_ODATA.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| aps_user_ddl | aps_user_ddl | left_outer |
| usrstamp | usrstamp | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APS_IAM_USR_TS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Business User Last Changed User | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | username | ||
| LastChangedDate | moddate | |||
| LastChangedTime | modtime | |||
| LastChangedUser | modifier | |||
| LastChangedUserName | UserDescription |
@AbapCatalog.sqlViewName: 'APS_IAM_USR_TS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Business User Last Changed User'
define view aps_iam_user_timestamp
as select from usrstamp
left outer join aps_user_ddl on usrstamp.modifier = aps_user_ddl.UserID
{
key username as UserID,
moddate as LastChangedDate,
modtime as LastChangedTime,
cast( dats_tims_to_tstmp(moddate,
modtime,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL') as timestamp) as LastChangedTimestamp,
modifier as LastChangedUser,
UserDescription as LastChangedUserName
}
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