I_BalanceCarryForwardRunStatus

DDL: I_BALANCECARRYFORWARDRUNSTATUS SQL: IFINSBCFRUNSTS Type: view BASIC

Run Status of Balance Carry Forward

I_BalanceCarryForwardRunStatus is a Basic CDS View that provides data about "Run Status of Balance Carry Forward" in SAP S/4HANA. It reads from 1 data source (fins_bcf_package) and exposes 6 fields with key fields BalanceCarryforwardRun, Ledger, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
fins_bcf_package fins_bcf_package from

Annotations (11)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BalanceCarryforwardRun run_id
KEY Ledger rldnr
KEY CompanyCode bukrs
BalanceCarryforwardIsComplete
NumberOfWarningMessages num_wmsg
NumberOfErrorMessages num_emsg
@AbapCatalog.sqlViewName: 'IFINSBCFRUNSTS'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Run Status of Balance Carry Forward'

@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK

@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MIXED

define view I_BalanceCarryForwardRunStatus as select from fins_bcf_package {
    
    
  key run_id                  as BalanceCarryforwardRun,
  key rldnr                   as Ledger,
  key bukrs                   as CompanyCode,
      cast( case when xsuccess = 'X' and xdelta_needed <> 'X' then xsuccess else ' ' end as fins_bcf_success ) as BalanceCarryforwardIsComplete,
      num_wmsg                as NumberOfWarningMessages,
      num_emsg                as NumberOfErrorMessages
      
      }
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINS_BCF_PACKAGE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/