R_CashPositionUserSetting
User Settings for Cash Position
R_CashPositionUserSetting is a Basic CDS View that provides data about "User Settings for Cash Position" in SAP S/4HANA. It reads from 1 data source (usr05) and exposes 1 field with key field UserParameter. Part of development package FCLM_CP_SHORTTERM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| usr05 | param | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | User Settings for Cash Position | view | |
| ObjectModel.representativeKey | UserParameter | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserParameter | usr05 | parid |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'User Settings for Cash Position'
@ObjectModel.representativeKey: 'UserParameter'
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@VDM.viewType:#BASIC
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
define view entity R_CashPositionUserSetting
as select from usr05 as param
{
key param.parid as UserParameter,
cast( case when param.parid = 'FCLM_CP_SCALING'
and param.parva is not initial
and substring(param.parva,1, 1) = 'X'
then 'X' end as fclm_cp_customsclngenabled) as CshPosCustomScalingIsEnabled,
cast(case when param.parid = 'FCLM_CP_SCALING'
and param.parva is not initial
and ( cast(substring(param.parva, 2, 3) as int1 ) between 0 and 9 )
then substring(param.parva, 2,3) end as fclm_cp_scaling_factor) as CashPositionScalingFactor,
cast ( case when param.parid = 'FCLM_CP_SCALING'
and param.parva is not initial
then substring( param.parva , 5 , 3 ) end as fclm_cp_currdec ) as CshPosCstmSclngNmbrOfDcmlPlace
}
where
param.parid = 'FCLM_CP_SCALING'
and param.bname = $session.user
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