I_FinValuationObjectType
Financial Valuation Object Type
I_FinValuationObjectType is a Basic CDS View (Dimension) that provides data about "Financial Valuation Object Type" in SAP S/4HANA. It reads from 1 data source (finsc_val_type) and exposes 2 fields with key field FinancialValuationObjectType. It has 1 association to related views. Part of development package FINS_FI_CLS_CUSTOMIZING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| finsc_val_type | finsc_val_type | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FinValuationObjectTypeText | _Text | $projection.FinancialValuationObjectType = _Text.FinancialValuationObjectType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Financial Valuation Object Type | view | |
| AbapCatalog.sqlViewName | IFINVALOBJTYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | FinancialValuationObjectType | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialValuationObjectType | valobj_type | ||
| _Text | _Text |
@EndUserText.label: 'Financial Valuation Object Type'
@AbapCatalog: {
sqlViewName: 'IFINVALOBJTYPE',
preserveKey: true,
buffering: {
status: #ACTIVE,
type: #FULL,
numberOfKeyFields: 1
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: true
}
@ObjectModel: {
representativeKey: 'FinancialValuationObjectType',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [ #EXTRACTION_DATA_SOURCE , #SQL_DATA_SOURCE ]
}
@Search.searchable: true
define view I_FinValuationObjectType
as select from finsc_val_type
association [0..*] to I_FinValuationObjectTypeText as _Text on $projection.FinancialValuationObjectType = _Text.FinancialValuationObjectType
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking:#HIGH
@Search.fuzzinessThreshold: 0.8
key valobj_type as FinancialValuationObjectType,
_Text
}
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