I_TrsyHdggClassfctnText

DDL: I_TRSYHDGGCLASSFCTNTEXT SQL: IHDGCLASSTEXT Type: view BASIC

Treasury Hedging Classification - Text

I_TrsyHdggClassfctnText (Basic)

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

Financial Operations

I_TrsyHdggClassfctnText is a Basic CDS View that provides data about "Treasury Hedging Classification - Text" in SAP S/4HANA. It reads from 1 data source (toec_class_t) and exposes 5 fields with key fields Language, HedgingClassification. It has 2 associations to related views.

SAP Help Documentation

CategoryTreasury Hedging Classification
Data CategoryText
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Purpose
This CDS view provides access to the name/description of a hedging classification in different languages. This CDS view provides the prerequisites for answering the following business questions: Which description does a hedging classification have in a specific language?

Structure
Main CDS parameters and filters The main filters are: Language Key Measures and attributes Some important attributes are: Hedging classification Language key Description

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesLanguage-Dependent Text, Data Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the name/description of a hedging classification in different languages.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which description does a hedging classification have in a specific language?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
toec_class_t hclasst from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TreasuryHedgingClassfctn _TreasuryHedgingClassfctn $projection.HedgingClassification = _TreasuryHedgingClassfctn.HedgingClassification
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IHDGCLASSTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Treasury Hedging Classification - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HedgingClassification view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language toec_class_t lang Language Key
KEY HedgingClassification toec_class_t hedging_classification Hedging Classification
HedgingClassificationName toec_class_t text Description
_TreasuryHedgingClassfctn _TreasuryHedgingClassfctn
_Language _Language

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_TrsyHdggClassfctnText.
-- 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.
-- SQL view name: IHDGCLASSTEXT

CREATE VIEW I_TrsyHdggClassfctnText AS
SELECT
  hclasst.lang AS Language,
  hclasst.hedging_classification AS HedgingClassification,
  hclasst.text AS HedgingClassificationName
FROM toec_class_t AS hclasst
LEFT OUTER JOIN I_TreasuryHedgingClassfctn AS _TreasuryHedgingClassfctn ON HedgingClassification = _TreasuryHedgingClassfctn.HedgingClassification  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;