I_BalanceCarryForwardRun

DDL: I_BALANCECARRYFORWARDRUN SQL: IFINSBCFRUN Type: view BASIC Package: ODATA_GL_BCF_STATUS

Balance Carry Forward Run

I_BalanceCarryForwardRun is a Basic CDS View that provides data about "Balance Carry Forward Run" in SAP S/4HANA. It reads from 1 data source (fins_bcf_run) and exposes 9 fields with key field BalanceCarryforwardRun. Part of development package ODATA_GL_BCF_STATUS.

Data Sources (1)

SourceAliasJoin Type
fins_bcf_run _Run from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFINSBCFRUN view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
EndUserText.label Balance Carry Forward Run view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY BalanceCarryforwardRun fins_bcf_run run_id UUID
BalanceCarryforwardFromYear fins_bcf_run from_year Valid-From Year
BalanceCarryforwardToYear fins_bcf_run to_year Valid-To Year
LastChangedByUser fins_bcf_run uname User Name
clientNULLasBalanceCarryforwardRunDate
ApplicationLog fins_bcf_run appl_log_number Log Number
ApplicationJobName fins_bcf_run jobname Name of Send Process
ApplicationJob fins_bcf_run jobcount Job number
BalanceCarryforwardStatus

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_BalanceCarryForwardRun.
-- 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: IFINSBCFRUN

CREATE VIEW I_BalanceCarryForwardRun AS
SELECT
  _Run.run_id AS BalanceCarryforwardRun,
  _Run.from_year AS BalanceCarryforwardFromYear,
  _Run.to_year AS BalanceCarryforwardToYear,
  _Run.uname AS LastChangedByUser,
  tstmp_to_dats( _Run.timestamp, abap_system_timezone( $session.client,'NULL' ), $session.client, 'NULL' ) as BalanceCarryforwardRunDate AS clientNULLasBalanceCarryforwardRunDate,
  _Run.appl_log_number AS ApplicationLog,
  _Run.jobname AS ApplicationJobName,
  _Run.jobcount AS ApplicationJob,
  coalesce ( _ApplicationJob.status, _Run.status ) AS BalanceCarryforwardStatus
FROM fins_bcf_run AS _Run
;