Deprecated
This CDS view is deprecated in S/4HANA. Use NoSuccessor instead. View all deprecated CDS views →

I_SAFTConsolidationKey

DDL: I_SAFTCONSOLIDATIONKEY SQL: ISAFTCONSKEY Type: view BASIC

SAF-T Consolidation Key

I_SAFTConsolidationKey is a Basic CDS View that provides data about "SAF-T Consolidation Key" in SAP S/4HANA. It reads from 1 data source (saftnv_con_ext) and exposes 2 fields with key fields SAFTConsolidationUUID, SAFTExtractionUUID.

Data Sources (1)

SourceAliasJoin Type
saftnv_con_ext saftnv_con_ext from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISAFTCONSKEY view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
EndUserText.label SAF-T Consolidation Key view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor NoSuccessor view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SAFTConsolidationUUID consolidation_id Consolidation ID
KEY SAFTExtractionUUID extraction_id Extraction ID

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 I_SAFTConsolidationKey.
-- 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: ISAFTCONSKEY

CREATE VIEW I_SAFTConsolidationKey AS
SELECT
  consolidation_id AS SAFTConsolidationUUID,
  extraction_id AS SAFTExtractionUUID
FROM saftnv_con_ext
;