C_LU_SAFTGenLedgerSecTotals
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | JournalLine | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA