srf_eco
Mapped Aggregated Values for CBR France
srf_eco is a CDS View that provides data about "Mapped Aggregated Values for CBR France" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 1 field.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | from |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_BOPFormItem | abap.char( 1 ) | |
| P_Amount | abap.curr( 23,2 ) |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SRFECO | view | |
| EndUserText.label | Mapped Aggregated Values for CBR France | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| P_RoundDownAmount |
@AbapCatalog.sqlViewName: 'SRFECO'
@EndUserText.label: 'Mapped Aggregated Values for CBR France'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #S, serviceQuality: #B }
define view srf_eco
with parameters
P_BOPFormItem: abap.char( 1 ),
P_Amount: abap.curr( 23,2 )
as
select from I_SAPClient //dummy select
{
case :P_BOPFormItem
when 'A' then 'MONNAIE_A'
when 'B' then 'MONNAIE_B'
when 'C' then 'MONNAIE_C'
when 'D' then 'MONNAIE_D'
else ''
end as P_Monnaie,
case :P_BOPFormItem
when 'A' then 'PAYS_A'
when 'B' then 'PAYS_B'
when 'C' then 'PAYS_C'
when 'D' then 'PAYS_D'
else ''
end as P_Pays,
case :P_BOPFormItem
when 'A' then 'CREA_AFF'
when 'B' then 'DET_AFF'
when 'C' then 'AVAC_V_AFF'
when 'D' then 'AVAC_R_AFF'
else ''
end as P_Aff,
case :P_BOPFormItem
when 'A' then 'CREA_NON_AFF'
when 'B' then 'DET_NON_AFF'
when 'C' then 'AVAC_V_NON_AFF'
when 'D' then 'AVAC_R_NON_AFF'
else ''
end as P_NonAff,
cast(floor(abs($parameters.P_Amount)) as abap.dec( 23, 0)) as P_RoundDownAmount
}
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