E_FinancialInstrCharacteristic

DDL: E_FINANCIALINSTRCHARACTERISTIC SQL: EVFINDDB Type: view EXTENSION

Extension View for Derivatives

E_FinancialInstrCharacteristic is a Extension CDS View that provides data about "Extension View for Derivatives" in SAP S/4HANA. It reads from 1 data source (cmm_vfind) and exposes 5 fields with key fields CompanyCode, CommodityPriceExposure, CommodityExposureCategory, CommodityPriceSubExposure, CommodityPriceExposureVersion.

Data Sources (1)

SourceAliasJoin Type
cmm_vfind Persistence from

Annotations (9)

NameValueLevelField
VDM.viewType #EXTENSION view
VDM.private false view
AbapCatalog.sqlViewName EVFINDDB view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Extension View for Derivatives view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode cmm_vfind company_code Company Code
KEY CommodityPriceExposure cmm_vfind exposure_id Raw Exposure ID
KEY CommodityExposureCategory cmm_vfind exposure_cat Exposure Cat
KEY CommodityPriceSubExposure cmm_vfind exposure_subkey Expo Subkey
KEY CommodityPriceExposureVersion cmm_vfind version XML Vers.

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 E_FinancialInstrCharacteristic.
-- 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: EVFINDDB

CREATE VIEW E_FinancialInstrCharacteristic AS
SELECT
  Persistence.company_code AS CompanyCode,
  Persistence.exposure_id AS CommodityPriceExposure,
  Persistence.exposure_cat AS CommodityExposureCategory,
  Persistence.exposure_subkey AS CommodityPriceSubExposure,
  Persistence.version AS CommodityPriceExposureVersion
FROM cmm_vfind AS Persistence
;