FINS_REV_REC_CATEGORY_VERSION

DDL: FINS_REV_REC_CATEGORY_VERSION SQL: TRR_CATEG_VERSN Type: view

Plan category and CO plan version

FINS_REV_REC_CATEGORY_VERSION is a CDS View that provides data about "Plan category and CO plan version" in SAP S/4HANA. It reads from 6 data sources.

Data Sources (6)

SourceAliasJoin Type
fcomc_category_t b left_outer
tkvst b left_outer
t002 c left_outer
tka09 c inner
t002 d inner
t002 d inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName TRR_CATEG_VERSN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Plan category and CO plan version view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

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 FINS_REV_REC_CATEGORY_VERSION.
-- 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: TRR_CATEG_VERSN

CREATE VIEW FINS_REV_REC_CATEGORY_VERSION AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN t002 AS d ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fcomc_category_t AS b ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN t002 AS c ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tkvst AS b ON /* join condition not captured in parsed metadata */
INNER JOIN tka09 AS c ON /* join condition not captured in parsed metadata */
;