I_FinancialInstrProdCat

DDL: I_FINANCIALINSTRPRODCAT SQL: IFININSPRODCAT Type: view BASIC Package: FTTR_CORE

Product Category

I_FinancialInstrProdCat (Basic)

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

Treasury Product Category · Financial Operations

I_FinancialInstrProdCat is a Basic CDS View (Dimension) that provides data about "Product Category" in SAP S/4HANA. It reads from 1 data source (tzaf) and exposes 3 fields with key field FinancialInstrProductCategory. It has 1 association to related views. It is exposed through 3 OData services (ASQL_F3966, ASQL_F6157, ASQL_F8717). Part of development package FTTR_CORE.

SAP Help Documentation

CategoryCDS Views for System Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables) The data extracted relates to system settings that can be changed only when the product version or release is changed.
Corresponding DataSourceIFININSPRODCAT
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which product categories are available? To which contract type does a product category belong?

Structure
Main CDS parameters and filters The main filters are: Contract type Measures and attributes Some important attributes are: Product category Contract type

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 questions:</p> <ul> <li><p>Which product categories are available?</p></li> <li><p>To which contract type does a product category belong?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tzaf tzaf from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrProdCatText _Text $projection.FinancialInstrProductCategory = _Text.FinancialInstrProductCategory

Annotations (21)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFININSPRODCAT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Product Category view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey FinancialInstrProductCategory view
ObjectModel.usageType.dataClass #MASTER 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
Consumption.ranked true view
ObjectModel.sapObjectNodeType.name TreasuryProductCategory view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED
ASQL_F6157 ASQL_F6157 C2 NOT_RELEASED
ASQL_F8717 ASQL_F8717 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrProductCategory sanlf Product Category
TreasuryContractType rantyp Contract Type
_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_FinancialInstrProdCat.
-- 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: IFININSPRODCAT

CREATE VIEW I_FinancialInstrProdCat AS
SELECT
  sanlf AS FinancialInstrProductCategory,
  rantyp AS TreasuryContractType
FROM tzaf
LEFT OUTER JOIN I_FinancialInstrProdCatText AS _Text ON FinancialInstrProductCategory = _Text.FinancialInstrProductCategory  -- association [0..*]
;