I_ValidBankAccountWithRevision

DDL: I_VALIDBANKACCOUNTWITHREVISION Type: view_entity BASIC Package: FCLM_BAM

Non-deleted Bank Accts With revision

I_ValidBankAccountWithRevision is a Basic CDS View that provides data about "Non-deleted Bank Accts With revision" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 2 fields with key fields BankAccountInternalID, BankAccountRevision. Part of development package FCLM_BAM.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd amd from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Non-deleted Bank Accts With revision view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID fclm_bam_amd acc_id
KEY BankAccountRevision fclm_bam_amd revision
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Non-deleted Bank Accts With revision'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@VDM.viewType: #BASIC
define view entity I_ValidBankAccountWithRevision 
 as select from    fclm_bam_amd as amd   
{
  key amd.acc_id as BankAccountInternalID,
  key amd.revision as BankAccountRevision
 
}where amd.revision = '0000' and amd.status <> '99'