V_COSX_LVP_2_VIEW

DDL: V_COSX_LVP_2 SQL: V_COSX_LVP_2 Type: view

COSX totals: all currencies/valuations - 1

V_COSX_LVP_2_VIEW is a CDS View that provides data about "COSX totals: all currencies/valuations - 1" in SAP S/4HANA. It reads from 4 data sources (finsc_cmp_versnc, finsc_curtype, finsc_ld_cmp, tka09).

Data Sources (4)

SourceAliasJoin Type
finsc_cmp_versnc b left_outer
finsc_curtype c inner
finsc_ld_cmp m inner
tka09 v left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_COSX_LVP_2 view
AbapCatalog.compiler.compareFilter true view
EndUserText.label COSX totals: all currencies/valuations - 1 view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P 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 V_COSX_LVP_2_VIEW.
-- 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: V_COSX_LVP_2

CREATE VIEW V_COSX_LVP_2_VIEW AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN finsc_cmp_versnc AS b ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tka09 AS v ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_curtype AS c ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_ld_cmp AS m ON /* join condition not captured in parsed metadata */
;