P_SFINRecurringJournalEntry

DDL: P_SFINRECURRINGJOURNALENTRY Type: view_entity BASIC Package: ODATA_GL_DSP_DOC_FLW

SFIN Recurring Journal Entry

P_SFINRecurringJournalEntry is a Basic CDS View that provides data about "SFIN Recurring Journal Entry" in SAP S/4HANA. It reads from 1 data source (bkdf) and exposes 25 fields with key fields RecrrgAcctgDocCompanyCode, RecurringAccountingDocument, RecrrgJournalEntryFiscalYear. Part of development package ODATA_GL_DSP_DOC_FLW.

Data Sources (1)

SourceAliasJoin Type
bkdf bkdf from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SFIN Recurring Journal Entry view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.private true view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY RecrrgAcctgDocCompanyCode bukrs Value
KEY RecurringAccountingDocument belnr SD Document
KEY RecrrgJournalEntryFiscalYear gjahr Settlement Year
RecurrenceFrequencyType dbmon Interval (Mths)
RecurrenceRunDayOfMonth dbtag Run Date
RecurrenceStartDate dbbdt First Run
RecurrenceNextCalculationDate dbatr Next Run
RecurrenceEndDate dbedt Last Run
RecrrgJournalEntryIsCompleted xdelt Deletion Ind.
NumberOfCompletedRecurrences dbzhl Number of Runs
RecurrenceSchedule dbakz Run Schedule
AmountInNonTransCrcyIsTrnsfd xfwhw Transf.LC Amts
TaxAmtInNonTransCrcyIsTrnsfd xsfhw Tax Amts Also in LC
RecrrgJournalEntryTextIsTrnsfd xbllt Copy Texts
RecurrenceType recurrence_type Recurrence Pattern
RecurrenceFrequency frequency Reporting Frequency
OccurrenceType occur_day_type On
OccurrenceDayByRecurrenceType occur_day Occurrence Day
FirstOccurrenceDate first_occur_date Start Date
RecurrenceEndType end_by_type End
LastOccurrenceDate last_occur_date End Date
NumberOfRecurrences number_of_occur Occurrence(s)
PostingIsBlocked blocked_for_posting Blocked for Posting
RecurrenceScheduleIsUsed recur_schedule_used Use Posting Schedule
ApplicationLog lognumber UUID

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_SFINRecurringJournalEntry.
-- 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 P_SFINRecurringJournalEntry AS
SELECT
  bukrs AS RecrrgAcctgDocCompanyCode,
  belnr AS RecurringAccountingDocument,
  gjahr AS RecrrgJournalEntryFiscalYear,
  dbmon AS RecurrenceFrequencyType,
  dbtag AS RecurrenceRunDayOfMonth,
  dbbdt AS RecurrenceStartDate,
  dbatr AS RecurrenceNextCalculationDate,
  dbedt AS RecurrenceEndDate,
  xdelt AS RecrrgJournalEntryIsCompleted,
  dbzhl AS NumberOfCompletedRecurrences,
  dbakz AS RecurrenceSchedule,
  xfwhw AS AmountInNonTransCrcyIsTrnsfd,
  xsfhw AS TaxAmtInNonTransCrcyIsTrnsfd,
  xbllt AS RecrrgJournalEntryTextIsTrnsfd,
  recurrence_type AS RecurrenceType,
  frequency AS RecurrenceFrequency,
  occur_day_type AS OccurrenceType,
  occur_day AS OccurrenceDayByRecurrenceType,
  first_occur_date AS FirstOccurrenceDate,
  end_by_type AS RecurrenceEndType,
  last_occur_date AS LastOccurrenceDate,
  number_of_occur AS NumberOfRecurrences,
  blocked_for_posting AS PostingIsBlocked,
  recur_schedule_used AS RecurrenceScheduleIsUsed,
  lognumber AS ApplicationLog
FROM bkdf
;