I_ControllingValuationTypeText
Controlling Valuation Type Text
I_ControllingValuationTypeText is a Basic CDS View that provides data about "Controlling Valuation Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields ControllingValuationType, Language. It has 2 associations to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ControllingValuationType | _ControllingValuationType | $projection.ControllingValuationType = _ControllingValuationType.ControllingValuationType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Controlling Valuation Type Text | view | |
| AbapCatalog.sqlViewName | IFICOVALUATTYPT | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ControllingValuationType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingValuationType | |||
| KEY | Language | |||
| DomainValue | domvalue_l | |||
| ControllingValuationTypeName | ||||
| _ControllingValuationType | _ControllingValuationType | |||
| _Language | _Language |
@EndUserText.label: 'Controlling Valuation Type Text'
@AbapCatalog.sqlViewName: 'IFICOVALUATTYPT'
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ControllingValuationType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Search.searchable: true
define view I_ControllingValuationTypeText
as select from dd07t
association [1..1] to I_ControllingValuationType as _ControllingValuationType on $projection.ControllingValuationType = _ControllingValuationType.ControllingValuationType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_ControllingValuationType'
@ObjectModel.text.element: ['ControllingValuationType']
key substring(domvalue_l, 1, 1) as ControllingValuationType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key cast( ddlanguage as spras preserving type ) as Language,
@Analytics.hidden: true
@Consumption.hidden: true
domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
cast(ddtext as fml_valuation_view_text preserving type) as ControllingValuationTypeName,
_ControllingValuationType,
_Language
}
where
dd07t.domname = 'VALUTYP'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000';
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