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

C_LU_SAFTGenLedgerSecTotals

DDL: C_LU_SAFTGENLEDGERSECTOTALS SQL: CLUSAFGENLEDTT Type: view CONSUMPTION

SAFT LU General Ledger Section Totals

C_LU_SAFTGenLedgerSecTotals is a Consumption CDS View that provides data about "SAFT LU General Ledger Section Totals" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 5 fields with key field StatryRptgEntity.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode JournalLine from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CLUSAFGENLEDTT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label SAFT LU General Ledger Section Totals view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity
CompanyCodeCurrency Currency Valuation Crcy
TotalCreditAmount
TotalDebitAmount
_Currency I_CompanyCode _Currency

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 C_LU_SAFTGenLedgerSecTotals.
-- 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: CLUSAFGENLEDTT

CREATE VIEW C_LU_SAFTGenLedgerSecTotals AS
SELECT
  'X' AS StatryRptgEntity,
  Currency AS CompanyCodeCurrency,
  '0' AS TotalCreditAmount,
  '0' AS TotalDebitAmount,
  JournalLine._Currency AS _Currency
FROM I_CompanyCode AS JournalLine
;