P_SelectDefault
Select Default Currency Pairs
P_SelectDefault is a Composite CDS View that provides data about "Select Default Currency Pairs" in SAP S/4HANA. It reads from 2 data sources (I_CurrencyPair, I_SAPClient) and exposes 1 field. Part of development package FXM_CORE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CurrencyPair | I_CurrencyPair | left_outer |
| I_SAPClient | I_SAPClient | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PSELDEF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| MaximumSort |
@AbapCatalog.sqlViewName: 'PSELDEF'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@VDM.private:true
define view P_SelectDefault as select from
I_SAPClient left outer join I_CurrencyPair on I_CurrencyPair.SortSequence <> 0
{
max( SortSequence ) as MaximumSort
}
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