P_RO_SAFTDocumentType

DDL: P_RO_SAFTDOCUMENTTYPE SQL: PROSAFTDOCTYPE Type: view CONSUMPTION

GL Entry Document Type for RO SAFT

P_RO_SAFTDocumentType is a Consumption CDS View that provides data about "GL Entry Document Type for RO SAFT" in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
I_JournalEntry Header inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PROSAFTDOCTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
VDM.private true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label GL Entry Document Type for RO SAFT view

Fields (4)

KeyFieldSource TableSource FieldDescription
StatryRptCategory Log StatryRptCategory
StatryRptgEntity Log StatryRptgEntity
StatryRptRunID Log StatryRptRunID
AccountingDocumentType I_JournalEntry AccountingDocumentType
@AbapCatalog.sqlViewName: 'PROSAFTDOCTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@VDM.private:true 
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'GL Entry Document Type for RO SAFT'
define view P_RO_SAFTDocumentType
 
  as select distinct from I_StRpJournalEntryHeaderLog as Log
  
  inner join I_JournalEntry as Header on  Log.AccountingDocument = Header.AccountingDocument
                                      and Log.CompanyCode        = Header.CompanyCode
                                      and Log.FiscalYear         = Header.FiscalYear  
{
  @Consumption.filter.mandatory: true
  Log.StatryRptCategory,
  @Consumption.filter.mandatory: true
  Log.StatryRptgEntity,
  @Consumption.filter.mandatory: true
  Log.StatryRptRunID,
  Header.AccountingDocumentType     
}