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 Value
KEY FiscalYear bkpf gjahr Settlement Year
KEY AccountingDocument bkpf belnr SD Document
BusinessTransactionDocument bkpf glbtgrp GL Bus. Trans. Grp

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SAFTControllingDocument.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISAFCODOC

CREATE VIEW I_SAFTControllingDocument AS
SELECT
  a.bukrs AS CompanyCode,
  a.gjahr AS FiscalYear,
  a.belnr AS AccountingDocument,
  a.glbtgrp AS BusinessTransactionDocument
FROM bkpf AS a
;