I_EXCISEREVDOC

CDS View

Excise Reverse Document

I_EXCISEREVDOC is a CDS View in S/4HANA. Excise Reverse Document. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ExciseDueDocBase view left_outer COMPOSITE Excise Duelist Base
@EndUserText.label: 'Excise Reverse Document'

@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED

@AbapCatalog.sqlViewName: 'ISDBEXCREVDOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC

define view I_ExciseRevDoc
  as select from I_ExciseDocument
  association [1..1] to I_ExciseDocument as _ExciseHeader on  $projection.ExciseTransactionType   = _ExciseHeader.ExciseTransactionType
                                                          and $projection.InternalExciseDocNumber = _ExciseHeader.InternalExciseDocNumber
                                                          and $projection.ExciseDocumentYear      = _ExciseHeader.ExciseDocumentYear
{
  key ExciseTransactionType,
  key max(InternalExciseDocNumber) as InternalExciseDocNumber,
      ExciseRefDoc1,
      max(ExciseDocumentYear)      as ExciseDocumentYear,
      max(CreationDateTime)        as CreationDateTime,
      _ExciseHeader
}
group by
  ExciseTransactionType,
  ExciseRefDoc1
having
  ExciseTransactionType = 'DLFC'  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EXCISEDOCUMENT"
],
"ASSOCIATED":
[
"I_EXCISEDOCUMENT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/