P_RO_SAFTBSAK

DDL: P_RO_SAFTBSAK SQL: PROSAFTBSAK Type: view COMPOSITE

BSAK

P_RO_SAFTBSAK is a Composite CDS View that provides data about "BSAK" in SAP S/4HANA. It reads from 1 data source (I_OperationalAcctgDocItem) and exposes 11 fields with key fields CompanyCode, Supplier, SpecialGLTransactionType, SpecialGLCode, ClearingDate.

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PROSAFTBSAK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BSAK view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Supplier Supplier Supplier
KEY SpecialGLTransactionType SpecialGLTransactionType Transact.Type
KEY SpecialGLCode SpecialGLCode Special G/L Ind
KEY ClearingDate ClearingDate Clearing Date
KEY ClearingJournalEntry ClearingJournalEntry Clrng doc.
KEY AssignmentReference AssignmentReference Assignment Reference
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY AccountingDocument AccountingDocument Journal Entry
KEY AccountingDocumentItem AccountingDocumentItem Posting View Item
VATRegistration VATRegistration VAT Registration No.

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_SAFTBSAK.
-- 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: PROSAFTBSAK

CREATE VIEW P_RO_SAFTBSAK AS
SELECT
  CompanyCode,
  Supplier,
  SpecialGLTransactionType,
  SpecialGLCode,
  ClearingDate,
  ClearingJournalEntry,
  AssignmentReference,
  FiscalYear,
  AccountingDocument,
  AccountingDocumentItem,
  VATRegistration
FROM I_OperationalAcctgDocItem
;