I_BankAccountStatus_2

DDL: I_BANKACCOUNTSTATUS_2 Type: view_entity BASIC Package: FCLM_MBA

Bank Account Status

I_BankAccountStatus_2 is a Basic CDS View (Dimension) that provides data about "Bank Account Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BankAccountStatus. It has 1 association to related views. Part of development package FCLM_MBA.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BankAccountStatusText _Text $projection.BankAccountStatus = _Text.BankAccountStatus

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bank Account Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Metadata.allowExtensions true view
VDM.viewType #BASIC view
ObjectModel.representativeKey BankAccountStatus view
ObjectModel.sapObjectNodeType.name BankAccountLifecycleStatus view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankAccountStatus
DomainValue domvalue_l
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Bank Account Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #META    
}
@Analytics.internalName:#LOCAL
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.modelingPattern:#ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION,
                                      #SQL_DATA_SOURCE,
                                      #CDS_MODELING_DATA_SOURCE,
                                      #CDS_MODELING_ASSOCIATION_TARGET,
                                      #EXTRACTION_DATA_SOURCE,
                                      #VALUE_HELP_PROVIDER ]
@ObjectModel.dataCategory:#VALUE_HELP
@Search.searchable: true
@Metadata.allowExtensions:true
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'BankAccountStatus'
@ObjectModel.sapObjectNodeType.name: 'BankAccountLifecycleStatus'

define view entity I_BankAccountStatus_2
  as select from dd07l
  association [0..*] to I_BankAccountStatusText as _Text on $projection.BankAccountStatus = _Text.BankAccountStatus
{

      @ObjectModel.text.association: '_Text'
  key cast( dd07l.domvalue_l as fclm_bam_acc_status  ) as BankAccountStatus,  
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Consumption.hidden: true
      @Analytics.hidden:true
      domvalue_l as DomainValue,
      _Text
}
where
      dd07l.domname  = 'FCLM_BAM_ACC_STATUS'
  and dd07l.as4local = 'A';