C_ReversalAccountingNotif

DDL: C_REVERSALACCOUNTINGNOTIF Type: view_entity CONSUMPTION

Reversal Accounting Notification

C_ReversalAccountingNotif is a Consumption CDS View that provides data about "Reversal Accounting Notification" in SAP S/4HANA. It reads from 1 data source (R_ReversalAccountingNotifTP) and exposes 13 fields with key field ReversalAccountingNotifUUID.

Data Sources (1)

SourceAliasJoin Type
R_ReversalAccountingNotifTP R_ReversalAccountingNotifTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Reversal Accounting Notification view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view
Search.searchable true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY ReversalAccountingNotifUUID ReversalAccountingNotifUUID
ReversalReferenceDocumentType ReversalReferenceDocumentType
ReversalReferenceDocumentOID ReversalReferenceDocumentOID
ReversalReferenceDocumentDspID ReversalReferenceDocumentDspID
ReversalRefDocGlobalTenantID ReversalRefDocGlobalTenantID
ReversalReferenceDocLgclSyst ReversalReferenceDocLgclSyst
CompanyCodeOID CompanyCodeOID
CompanyCode CompanyCode Receiver Company Code
ProposedPostingDate ProposedPostingDate
DocumentDate DocumentDate Journal Entry Date
_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 C_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 C_ReversalAccountingNotif AS
SELECT
  ReversalAccountingNotifUUID,
  ReversalReferenceDocumentType,
  ReversalReferenceDocumentOID,
  ReversalReferenceDocumentDspID,
  ReversalRefDocGlobalTenantID,
  ReversalReferenceDocLgclSyst,
  CompanyCodeOID,
  CompanyCode,
  ProposedPostingDate,
  DocumentDate
FROM R_ReversalAccountingNotifTP
;