A_ReversalFinanceNotif

DDL: A_REVERSALFINANCENOTIF Type: view_entity CONSUMPTION Package: FBTI_REVERSAL_FIN_NOTIF_EXT

Reversal Finance Notification

A_ReversalFinanceNotif is a Consumption CDS View that provides data about "Reversal Finance Notification" in SAP S/4HANA. It reads from 1 data source (R_ReversalFinanceNotifTP) and exposes 12 fields with key field ReversalFinanceNotifUUID. Part of development package FBTI_REVERSAL_FIN_NOTIF_EXT.

Data Sources (1)

SourceAliasJoin Type
R_ReversalFinanceNotifTP R_ReversalFinanceNotifTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Reversal Finance Notification view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
OData.entityType.name ReversalFinanceNotification_Type view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ReversalFinanceNotifUUID ReversalFinanceNotifUUID
ReversalReferenceDocumentType ReversalReferenceDocumentType
ReversalReferenceDocumentOID ReversalReferenceDocumentOID
ReversalReferenceDocumentDspID ReversalReferenceDocumentDspID
RvslReferenceDocumentEventOID RvslReferenceDocumentEventOID
RvslRefDocumentEventDisplayID RvslRefDocumentEventDisplayID
ReversalRefDocGlobalTenantID ReversalRefDocGlobalTenantID
ReversalReferenceDocLgclSyst ReversalReferenceDocLgclSyst
CompanyCodeOID CompanyCodeOID
CompanyCode CompanyCode Receiver Company Code
PostingDate PostingDate Posting Date for GR
DocumentDate DocumentDate Journal Entry Date

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 A_ReversalFinanceNotif.
-- 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 A_ReversalFinanceNotif AS
SELECT
  ReversalFinanceNotifUUID,
  ReversalReferenceDocumentType,
  ReversalReferenceDocumentOID,
  ReversalReferenceDocumentDspID,
  RvslReferenceDocumentEventOID,
  RvslRefDocumentEventDisplayID,
  ReversalRefDocGlobalTenantID,
  ReversalReferenceDocLgclSyst,
  CompanyCodeOID,
  CompanyCode,
  PostingDate,
  DocumentDate
FROM R_ReversalFinanceNotifTP
;