I_ReversalAccountingNotif

DDL: I_REVERSALACCOUNTINGNOTIF Type: view_entity BASIC

Reversal Accounting Notification

I_ReversalAccountingNotif is a Basic CDS View that provides data about "Reversal Accounting Notification" in SAP S/4HANA. It reads from 1 data source (fan_rvsl_hdr) and exposes 14 fields with key field ReversalAccountingNotifUUID. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fan_rvsl_hdr fan_rvsl_hdr from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_CompanyCode _CompanyCodeText $projection.CompanyCode = _CompanyCodeText.CompanyCode
[0..1] I_AcctgNotifRefDocumentType _ReversalReferenceDocumentType $projection.ReversalReferenceDocumentType = _ReversalReferenceDocumentType.ReferenceDocumentType
[1] I_ReversalAcctNotifRvsdRefDoc _RvsdRefDoc

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Reversal Accounting Notification view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ReversalAccountingNotifUUID reversal_accounting_notif_uuid Rvsl Actg Notif UUID
ReversalReferenceDocumentType reversal_reference_doc_type Rvsl Ref Doc Type
ReversalReferenceDocumentOID reversal_reference_doc_oid Rvsl Ref Doc OID
ReversalReferenceDocumentDspID reversal_reference_doc_dsp_id Rvsl Ref Doc Disp ID
ReversalRefDocGlobalTenantID reversal_reference_doc_gtid Rvsl Ref Doc GTID
ReversalReferenceDocLgclSyst reversal_ref_doc_lgcl_syst Rvsl Ref Doc Log Sys
CompanyCodeOID company_code_oid Company Code OID
CompanyCode company_code Company Code
ProposedPostingDate proposed_posting_date Rvsl Propsd Post Dat
DocumentDate document_date Reversal Doc Date
_RvsdRefDoc _RvsdRefDoc
_CompanyCode _CompanyCode
_CompanyCodeText _CompanyCodeText
_ReversalReferenceDocumentType _ReversalReferenceDocumentType

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_ReversalAccountingNotif.
-- 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.

CREATE VIEW I_ReversalAccountingNotif AS
SELECT
  reversal_accounting_notif_uuid AS ReversalAccountingNotifUUID,
  reversal_reference_doc_type AS ReversalReferenceDocumentType,
  reversal_reference_doc_oid AS ReversalReferenceDocumentOID,
  reversal_reference_doc_dsp_id AS ReversalReferenceDocumentDspID,
  reversal_reference_doc_gtid AS ReversalRefDocGlobalTenantID,
  reversal_ref_doc_lgcl_syst AS ReversalReferenceDocLgclSyst,
  company_code_oid AS CompanyCodeOID,
  company_code AS CompanyCode,
  proposed_posting_date AS ProposedPostingDate,
  document_date AS DocumentDate
FROM fan_rvsl_hdr
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCodeText ON CompanyCode = _CompanyCodeText.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_AcctgNotifRefDocumentType AS _ReversalReferenceDocumentType ON ReversalReferenceDocumentType = _ReversalReferenceDocumentType.ReferenceDocumentType  -- association [0..1]
LEFT OUTER JOIN I_ReversalAcctNotifRvsdRefDoc AS _RvsdRefDoc ON /* condition not available in parsed metadata */  -- association [1]
;