I_FinTransProductGroup

DDL: I_FINTRANSPRODUCTGROUP SQL: IFINTRANSPRODGRP Type: view BASIC

Financial Transaction Product Groups

I_FinTransProductGroup (Basic)

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

Financial Transaction Product Group · Financial Operations

I_FinTransProductGroup is a Basic CDS View (Dimension) that provides data about "Financial Transaction Product Groups" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field FinTransProductGroup. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for System Data
Data CategoryDimension
Purpose
This CDS view reads the financial transaction product groups defined in the system. This CDS view provides the data to answer the following business questions: Which product groups for financial transaction are defined in system? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Important Fields Important fields in this view include the following: Field Name Description Measure or Attribute Comment FinTransProductGroup Financial Transaction Product Group Attribute

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source for Search, Data Provider for Value Help
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinTransProductGroupText _Text $projection.FinTransProductGroup = _Text.FinTransProductGroup

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFINTRANSPRODGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Financial Transaction Product Groups view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey FinTransProductGroup view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name FinTransProductGroup view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FinTransProductGroup Product Group for Financial Transaction
_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_FinTransProductGroup.
-- 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: IFINTRANSPRODGRP

CREATE VIEW I_FinTransProductGroup AS
SELECT
  cast(left(DomainValue.domvalue_l,4) as ftr_productgroup preserving type ) AS FinTransProductGroup
FROM dd07l AS DomainValue
LEFT OUTER JOIN I_FinTransProductGroupText AS _Text ON FinTransProductGroup = _Text.FinTransProductGroup  -- association [0..*]
;