I_TreasuryValuationClass

DDL: I_TREASURYVALUATIONCLASS Type: view_entity BASIC Package: FTR_GENERAL_CORE

Treasury Valuation Class

I_TreasuryValuationClass (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Treasury Valuation Class · Financial Operations

I_TreasuryValuationClass is a Basic CDS View (Dimension) that provides data about "Treasury Valuation Class" in SAP S/4HANA. It reads from 1 data source (trgc_val_class) and exposes 4 fields with key fields TreasuryValuationArea, TreasuryValuationClass. It is exposed through 5 OData services (ASQL_F1754, ASQL_F1755, ASQL_F1867, ...). Part of development package FTR_GENERAL_CORE.

SAP Help Documentation

CategoryCDS Views for Configuration Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Corresponding DataSourceITRVALCL
Purpose
This CDS view provides the prerequisites for answering the following business question: Which specific valuation classes are defined for the valuation areas in the system?

Structure
Main filters The main filters are: Treasury valuation area Measures and attributes Some important attributes are: Treasury valuation area Valuation class

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Data Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Operations for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>Which specific valuation classes are defined for the valuation areas in the system?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
trgc_val_class TreasuryValuationClass from

Annotations (17)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed false view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName ITRVALCL view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
EndUserText.label Treasury Valuation Class view
ObjectModel.sapObjectNodeType.name TreasuryValuationClass view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey TreasuryValuationClass view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F1754 ASQL_F1754 C2 NOT_RELEASED
ASQL_F1755 ASQL_F1755 C2 NOT_RELEASED
ASQL_F1867 ASQL_F1867 C2 NOT_RELEASED
ASQL_F2331 ASQL_F2331 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TreasuryValuationArea trgc_val_class valuation_area Treasury Valuation Area
KEY TreasuryValuationClass Valuation Class
_TreasuryValuationArea _TreasuryValuationArea
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_TreasuryValuationClass.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_TreasuryValuationClass AS
SELECT
  TreasuryValuationClass.valuation_area AS TreasuryValuationArea,
  cast(TreasuryValuationClass.valuation_class as ftr_gen_valuation_class preserving type) AS TreasuryValuationClass
FROM trgc_val_class AS TreasuryValuationClass
;