TRAC_ADTL_EXP_MASTER_DATA
Master Data
TRAC_ADTL_EXP_MASTER_DATA is a CDS View that provides data about "Master Data" in SAP S/4HANA. It reads from 1 data source (I_Currency) and exposes 2 fields. Part of development package FTR_ACC_ADAPTOR_SUBVAL_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Currency | I_Currency | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Master Data | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| FinancialExposureItem | ||||
| FinancialExposureSubItem |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Master Data'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity TRAC_ADTL_EXP_MASTER_DATA
as select from I_Currency
{
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_TrsyFinExpsrItmText',
element: 'FinancialExposureItem' }
}]
cast ('ABCDEFGHIJKLM' as toe_exposure_item_id preserving type ) as FinancialExposureItem,
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_TrsyFinExpsrSubitemText',
element: 'FinancialExposureSubItem' }
}]
cast ('ABCDEFGHIJKLM' as toe_exposure_subitem_id preserving type ) as FinancialExposureSubItem
} where 1 = 2;
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