P_UserParameter
P_UserParameter is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (usr05) and exposes 2 fields with key field UserParameter.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| usr05 | usr05 | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PFIUSRPARA | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | UserParameter | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AbapCatalog.sqlViewName: 'PFIUSRPARA'
@VDM.viewType: #BASIC
@VDM.private: true
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: { representativeKey: 'UserParameter',
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
// ***********************************************
// UserParameter:
// * BIL - FinancialStatementVersion
// * BUK - CompanyCode
// * CAC - ControllingArea
// * ...
define view P_UserParameter
as select from usr05
{
key usr05.parid as UserParameter,
usr05.parva as UserParameterValue
}
where
usr05.bname = $session.user
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"USR05"
],
"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