I_BalanceCarryForwardRunStatus
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)
| Source | Alias | Join Type |
|---|---|---|
| fins_bcf_package | fins_bcf_package | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA