APS_OM_PrintClientUser
Print Client User
APS_OM_PrintClientUser is a CDS View that provides data about "Print Client User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 5 fields with key field UserID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | I_User | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APS_V_PCU | view | |
| EndUserText.label | Print Client User | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'APS_V_PCU'
@EndUserText.label: 'Print Client User'
@AccessControl.authorizationCheck:#NOT_REQUIRED
define view APS_OM_PrintClientUser
as select from I_User
join usrefus on I_User.UserID = usrefus.bname
{
key I_User.UserID as UserID,
usrefus.useralias as UserName,
I_User.UserDescription as Description,
' ' as IsLockedIndicator,
cast( '' as abap.char( 40 )) as NewPassword
}
where
I_User.UserID like 'CP%'
and I_User.IsTechnicalUser = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"USREFUS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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