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 Report ID
StatryRptgEntity Log StatryRptgEntity Reporting Entity
StatryRptRunID Log StatryRptRunID Report Run ID
AccountingDocumentType I_JournalEntry AccountingDocumentType Journal Entry Type

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 P_RO_SAFTDocumentType.
-- 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: PROSAFTDOCTYPE

CREATE VIEW P_RO_SAFTDocumentType AS
SELECT
  Log.StatryRptCategory AS StatryRptCategory,
  Log.StatryRptgEntity AS StatryRptgEntity,
  Log.StatryRptRunID AS StatryRptRunID,
  Header.AccountingDocumentType AS AccountingDocumentType
INNER JOIN I_JournalEntry AS Header ON /* join condition not captured in parsed metadata */
;