I_BankAccountLatestReview

DDL: I_BANKACCOUNTLATESTREVIEW SQL: IBANKACCLAREV Type: view COMPOSITE

Bank Account Last Review information

I_BankAccountLatestReview is a Composite CDS View that provides data about "Bank Account Last Review information" in SAP S/4HANA. It reads from 1 data source (I_BankAcctReviewLg) and exposes 2 fields with key field BankAccountInternalID.

Data Sources (1)

SourceAliasJoin Type
I_BankAcctReviewLg Log from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBANKACCLAREV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Bank Account Last Review information view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID I_BankAcctReviewLg BankAccountInternalID
BankAccountLastReviewDate
@AbapCatalog.sqlViewName: 'IBANKACCLAREV'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Bank Account Last Review information'
define view I_BankAccountLatestReview as select from I_BankAcctReviewLg as Log                                                         
{
  key Log.BankAccountInternalID,

  max(Log.LastChangeDate) as BankAccountLastReviewDate
    
} where BankAccountChangeRequestStatus = '02'
  group by BankAccountInternalID
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BANKACCTREVIEWLG"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/