I_CpdFinancialRiskText
Get CPD Financial Risk Text Name
I_CpdFinancialRiskText is a Basic CDS View that provides data about "Get CPD Financial Risk Text Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields FinancialRisk, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Cpdfinancialrisk | _FinancialRisk | $projection.FinancialRisk = _FinancialRisk.FinancialRisk |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPDFINRISKTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Get CPD Financial Risk Text Name | view | |
| ObjectModel.representativeKey | FinancialRisk | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialRisk | domvalue_l | ||
| KEY | Language | |||
| FinancialRiskName | ddtext | |||
| _FinancialRisk | _FinancialRisk | |||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'ICPDFINRISKTEXT',
compiler.compareFilter: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Get CPD Financial Risk Text Name'
@ObjectModel.representativeKey: 'FinancialRisk'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #NOT_ALLOWED
define view I_CpdFinancialRiskText
as select from dd07t
association [1..1] to I_Cpdfinancialrisk as _FinancialRisk on $projection.FinancialRisk = _FinancialRisk.FinancialRisk
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key domvalue_l as FinancialRisk,
@Semantics.language: true
key cast( ddlanguage as spras) as Language,
@Semantics.text: true
ddtext as FinancialRiskName,
_FinancialRisk,
_Language
}
where
domname = '/CPD/PWS_WS_FIN_RISK'
and domvalue_l <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CPDFINANCIALRISK",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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