V_COSP_PER_2_VIEW

DDL: V_COSP_PER_2 SQL: V_COSP_PER_2 Type: view

COSP totals: all currencies/valuations - 2

V_COSP_PER_2_VIEW is a CDS View that provides data about "COSP totals: all currencies/valuations - 2" 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 inner
finsc_curtype c inner
finsc_ld_cmp m inner
tka09 v inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_COSP_PER_2 view
AbapCatalog.compiler.compareFilter true view
EndUserText.label COSP totals: all currencies/valuations - 2 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_COSP_PER_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_COSP_PER_2

CREATE VIEW V_COSP_PER_2_VIEW AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN tka09 AS v ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_cmp_versnc AS b 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 */
;