I_PriceTranslationSourceName
Price Translation Source Name
I_PriceTranslationSourceName is a Basic CDS View that provides data about "Price Translation Source Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PriceTranslationSource. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PriceTranslationSource | _PriceTranslationSource | $projection.PriceTranslationSource = _PriceTranslationSource.PriceTranslationSource |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Price Translation Source Name | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPRICESOURCET | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | PriceTranslationSource | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | PriceTranslationSource | |||
| PriceTranslationSourceName | ||||
| _PriceTranslationSource | _PriceTranslationSource | |||
| _Language | _Language |
@EndUserText.label: 'Price Translation Source Name'
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPRICESOURCET'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'PriceTranslationSource'
define view I_PriceTranslationSourceName
as select from dd07t
association [0..1] to I_PriceTranslationSource as _PriceTranslationSource on $projection.PriceTranslationSource = _PriceTranslationSource.PriceTranslationSource
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key cast( ddlanguage as spras ) as Language,
@ObjectModel.foreignKey.association: '_PriceTranslationSource'
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.numc( 1 ) ) as fml_price_trans_src_name ) as PriceTranslationSource,
@Semantics.text
cast ( substring ( ddtext, 1, 50 ) as fml_price_trans_src_name ) as PriceTranslationSourceName, //Cut to right length and cast to proper data element
_PriceTranslationSource,
_Language
}
where
domname = 'FML_PRICE_TRANS_SRC_NAME'
and as4local = 'A'
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