P_PROF_PAR
Profiles with Parameter
P_PROF_PAR is a CDS View that provides data about "Profiles with Parameter" in SAP S/4HANA. It reads from 1 data source (ust04) and exposes 3 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ust04 | ust04 | inner |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| prof | xuprofile |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPROFPAR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Profiles with Parameter | view |
@AbapCatalog.sqlViewName: 'PPROFPAR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Profiles with Parameter'
define view P_PROF_PAR
with parameters
prof : xuprofile
as select distinct from usr02
inner join ust04 on usr02.bname = ust04.bname
{
usr02.bname,
@Consumption.hidden: true
usr02.class, // Do not export usergroup!
ust04.profile
}
where
ust04.profile = $parameters.prof
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"USR02",
"UST04"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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