I_PT_SAFTChkSlsInvcExist

DDL: I_PT_SAFTCHKSLSINVCEXIST Type: view_entity COMPOSITE Package: GLO_FIN_IS_SAFT_PT

Sales Invoices check exist

I_PT_SAFTChkSlsInvcExist is a Composite CDS View that provides data about "Sales Invoices check exist" in SAP S/4HANA. It reads from 1 data source (I_CalendarDate) and exposes 4 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CalendarDate. Part of development package GLO_FIN_IS_SAFT_PT.

Data Sources (1)

SourceAliasJoin Type
I_CalendarDate cal inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Invoices check exist view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity log StatryRptgEntity
KEY StatryRptCategory log StatryRptCategory
KEY StatryRptRunID log StatryRptRunID
KEY CalendarDate I_CalendarDate CalendarDate
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sales Invoices check exist'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #D,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_PT_SAFTChkSlsInvcExist as select distinct from I_PT_SAFTSalesInvoicesLog as log
         inner join I_CalendarDate   as cal on  cal.CalendarDate = log.PortugueseInvoiceDate
{
  key log.StatryRptgEntity              as StatryRptgEntity,
  key log.StatryRptCategory             as StatryRptCategory,
  key log.StatryRptRunID                as StatryRptRunID,
  key cal.CalendarDate
}