I_BankAccInWorkFlow
Bank Accounts in Work Flow
I_BankAccInWorkFlow is a Basic CDS View (Dimension) that provides data about "Bank Accounts in Work Flow" in SAP S/4HANA. It reads from 2 data sources (fclm_bam_reqacnt, fclm_bam_req) and exposes 1 field with key field BankAccountInternalID. Part of development package FCLM_BAM.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_reqacnt | reqaccount | inner |
| fclm_bam_req | reqheader | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | IBANKACCINWF | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | BankAccountInternalID | view | |
| EndUserText.label | Bank Accounts in Work Flow | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | fclm_bam_reqacnt | acc_id |
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.sqlViewName: 'IBANKACCINWF'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'BankAccountInternalID'
@EndUserText.label: 'Bank Accounts in Work Flow'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions:true
define view I_BankAccInWorkFlow as select from fclm_bam_req as reqheader
inner join fclm_bam_reqacnt as reqaccount
on reqaccount.request_id = reqheader.request_id
{
key reqaccount.acc_id as BankAccountInternalID
}where
(request_status = '01' or request_status = '02' or request_status = '05')
and ( request_process = ' ' and account_action != '05' )
group by reqaccount.acc_id
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