I_FinancialinstrProductType

DDL: I_FINANCIALINSTRPRODUCTTYPE SQL: IFININSPRODTP Type: view BASIC

Product Type

I_FinancialinstrProductType (Basic)

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

Financial Instrument Product Type · Financial Operations

I_FinancialinstrProductType is a Basic CDS View (Dimension) that provides data about "Product Type" in SAP S/4HANA. It reads from 1 data source (tzpa) and exposes 6 fields with key field FinancialInstrumentProductType. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Configuration Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Corresponding DataSourceIFININSPRODTP
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which product types are available for contract types? Which product category is assigned to a product type?

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

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which product types are available for contract types?</p></li> <li><p>Which product category is assigned to a product type?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tzpa FinancialInstrumentProductType from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrProdTypeText _Text $projection.FinancialInstrumentProductType = _Text.FinancialInstrumentProductType
[0..1] I_FinancialInstrProdCat _FinancialInstrProdCat $projection.FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory
[0..1] I_FinInstrProdTypeSuplmnt _FinancialInstrProdTypeSuplmnt $projection.FinancialInstrumentProductType = _FinancialInstrProdTypeSuplmnt.FinancialInstrumentProductType

Annotations (18)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFININSPRODTP 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 Type view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey FinancialInstrumentProductType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrumentProductType gsart Product Type
TreasuryContractType rantyp Contract Type
FinancialInstrProductCategory sanlf Product Category
_Text _Text
_FinancialInstrProdCat _FinancialInstrProdCat
_FinancialInstrProdTypeSuplmnt _FinancialInstrProdTypeSuplmnt

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_FinancialinstrProductType.
-- 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: IFININSPRODTP

CREATE VIEW I_FinancialinstrProductType AS
SELECT
  gsart AS FinancialInstrumentProductType,
  rantyp AS TreasuryContractType,
  sanlf AS FinancialInstrProductCategory
FROM tzpa AS FinancialInstrumentProductType
LEFT OUTER JOIN I_FinancialInstrProdTypeText AS _Text ON FinancialInstrumentProductType = _Text.FinancialInstrumentProductType  -- association [0..*]
LEFT OUTER JOIN I_FinancialInstrProdCat AS _FinancialInstrProdCat ON FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory  -- association [0..1]
LEFT OUTER JOIN I_FinInstrProdTypeSuplmnt AS _FinancialInstrProdTypeSuplmnt ON FinancialInstrumentProductType = _FinancialInstrProdTypeSuplmnt.FinancialInstrumentProductType  -- association [0..1]
;