P_PROF_PAR_REF
Profiles with Parameter for ref.users
P_PROF_PAR_REF is a CDS View that provides data about "Profiles with Parameter for ref.users" in SAP S/4HANA. It reads from 2 data sources (usrefus, ust04) and exposes 4 fields.
Parameters (1)
| Name | Type | Default |
|---|---|---|
| prof | xuprofile |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPROFPARREF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Profiles with Parameter for ref.users | view |
@AbapCatalog.sqlViewName: 'PPROFPARREF'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Profiles with Parameter for ref.users'
define view P_PROF_PAR_REF
with parameters
prof : xuprofile
as select distinct from usr02
inner join usrefus on usr02.bname = usrefus.bname
inner join ust04 on ust04.bname = usrefus.refuser
{
usr02.bname,
@Consumption.hidden: true
usr02.class, // Do not export usergroup!
usrefus.refuser,
ust04.profile
}
where
ust04.profile = $parameters.prof
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