I_FinancialInstrReference

DDL: I_FINANCIALINSTRREFERENCE SQL: IFININSTRREF Type: view BASIC

Internal Reference

I_FinancialInstrReference is a Basic CDS View that provides data about "Internal Reference" in SAP S/4HANA. It reads from 1 data source (trbac_int_ref) and exposes 2 fields with key field FinancialInstrumentReference. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
trbac_int_ref trbac_int_ref from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrReferenceText _Text $projection.FinancialInstrumentReference = _Text.FinancialInstrumentReference

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFININSTRREF view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey FinancialInstrumentReference view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
EndUserText.label Internal Reference view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrumentReference int_reference Internal Reference
_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_FinancialInstrReference.
-- 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: IFININSTRREF

CREATE VIEW I_FinancialInstrReference AS
SELECT
  int_reference AS FinancialInstrumentReference
FROM trbac_int_ref
LEFT OUTER JOIN I_FinancialInstrReferenceText AS _Text ON FinancialInstrumentReference = _Text.FinancialInstrumentReference  -- association [0..*]
;