I_SAFTControllingDocument

DDL: I_SAFTCONTROLLINGDOCUMENT SQL: ISAFCODOC Type: view BASIC

SAFT Controlling Document

I_SAFTControllingDocument is a Basic CDS View that provides data about "SAFT Controlling Document" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 4 fields with key fields CompanyCode, FiscalYear, AccountingDocument.

Data Sources (1)

SourceAliasJoin Type
bkpf a from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISAFCODOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAFT Controlling Document view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bkpf bukrs
KEY FiscalYear bkpf gjahr
KEY AccountingDocument bkpf belnr
BusinessTransactionDocument bkpf glbtgrp
@AbapCatalog.sqlViewName: 'ISAFCODOC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'SAFT Controlling Document'
define view I_SAFTControllingDocument as select from bkpf as a

{
  key a.bukrs as CompanyCode,
  key a.gjahr as FiscalYear,
  key a.belnr as AccountingDocument,
  a.glbtgrp   as BusinessTransactionDocument
} where a.glbtgrp <> '1'