P_RO_SAFTBsad

DDL: P_RO_SAFTBSAD SQL: PROSAFTBSAD Type: view COMPOSITE

BSAD

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

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PROSAFTBSAD 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 BSAD view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Customer Customer Sold-to Party
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_SAFTBsad.
-- 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: PROSAFTBSAD

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