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
TotalCreditAmount
TotalDebitAmount
_Currency I_CompanyCode _Currency
@AbapCatalog.sqlViewName: 'CLUSAFGENLEDTT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.status: #DEPRECATED
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@EndUserText.label: 'SAFT LU General Ledger Section Totals'


//  TO BE DEPRECATED



define view C_LU_SAFTGenLedgerSecTotals
  //                with parameters

  //

  //    P_StartDate        :dats,

  //    P_EndDate          :dats,

  //    P_StatryRptgEntity :srf_reporting_entity


  as select from I_CompanyCode
  //( P_StartDate:         $parameters.P_StartDate,

  //                                            P_EndDate:           $parameters.P_EndDate,

  //                                            P_StatryRptgEntity:  $parameters.P_StatryRptgEntity)

  as JournalLine
{
  key 'X'      as StatryRptgEntity,
      Currency as CompanyCodeCurrency,
      '0'      as TotalCreditAmount,
      '0'      as TotalDebitAmount,

      JournalLine._Currency

}