v_coepext_acdoca_view

DDL: V_COEP_EXT_ACDOCA SQL: V_COEPEXT_ACDOCA Type: view

Mapping from ACDOCA to COEP_EXT

v_coepext_acdoca_view is a CDS View that provides data about "Mapping from ACDOCA to COEP_EXT" in SAP S/4HANA. It reads from 3 data sources (t000, tka01, finsc_cmp_versnc).

Data Sources (3)

SourceAliasJoin Type
t000 s inner
tka01 t inner
finsc_cmp_versnc v inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_COEPEXT_ACDOCA view
EndUserText.label Mapping from ACDOCA to COEP_EXT view
ClientHandling.algorithm #SESSION_VARIABLE 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_coepext_acdoca_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_COEPEXT_ACDOCA

CREATE VIEW v_coepext_acdoca_view AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN t000 AS s ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_cmp_versnc AS v ON /* join condition not captured in parsed metadata */
INNER JOIN tka01 AS t ON /* join condition not captured in parsed metadata */
;