I_BankAccountRevisionWorkflow
Bank Account Revision created in workflow mode
I_BankAccountRevisionWorkflow is a Basic CDS View that provides data about "Bank Account Revision created in workflow mode" in SAP S/4HANA. It reads from 2 data sources (fclm_bam_reqacnt, fclm_bam_req) and exposes 2 fields with key fields BankAccountInternalID, BankAccountRevision.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_reqacnt | reqaccount | from |
| fclm_bam_req | reqheader | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBANKACCREVWF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Bank Account Revision created in workflow mode | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | fclm_bam_reqacnt | acc_id | |
| KEY | BankAccountRevision | fclm_bam_reqacnt | revision |
@AbapCatalog.sqlViewName: 'IBANKACCREVWF'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Bank Account Revision created in workflow mode'
define view I_BankAccountRevisionWorkflow
as select from fclm_bam_reqacnt as reqaccount
inner join fclm_bam_req as reqheader on reqaccount.request_id = reqheader.request_id
{
key reqaccount.acc_id as BankAccountInternalID,
key reqaccount.revision as BankAccountRevision
}
where
request_process = ' '
and( (reqaccount.revision <> '0000' and reqaccount.revision <> '0001')
or ( reqaccount.revision = '0001' and reqheader.request_status <> '03' and reqheader.request_status <> '07' ) )
// cancelled and rejected change request for opening a bank account should be excluded from the result list
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCLM_BAM_REQ",
"FCLM_BAM_REQACNT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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