SCSN_EXPORT_CACHE_V

DDL: SCSN_EXPORT_CACHE_V Type: view_entity

CSN Exporter Cache View

SCSN_EXPORT_CACHE_V is a CDS View that provides data about "CSN Exporter Cache View" in SAP S/4HANA. It reads from 1 data source (scsn_exp_cache) and exposes 6 fields with key fields CdsEntityName, CsnSpecVersion, TypeSystem.

Data Sources (1)

SourceAliasJoin Type
scsn_exp_cache scsn_exp_cache from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CSN Exporter Cache View view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CdsEntityName cds_entity_name CDS Entity Name
KEY CsnSpecVersion csn_spec_version CSN Spec Version
KEY TypeSystem type_system Type system
ExporterVersion exporter_version Exporter Version
AnnoChangeTimestamp anno_change_timestamp Annotation Last Changed Timestamp
Data data Read Data

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 SCSN_EXPORT_CACHE_V.
-- 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.

CREATE VIEW SCSN_EXPORT_CACHE_V AS
SELECT
  cds_entity_name AS CdsEntityName,
  csn_spec_version AS CsnSpecVersion,
  type_system AS TypeSystem,
  exporter_version AS ExporterVersion,
  anno_change_timestamp AS AnnoChangeTimestamp,
  Data
FROM scsn_exp_cache
;