I_BankAccountTypeVH

DDL: I_BANKACCOUNTTYPEVH SQL: IBANKACCTYPEVH Type: view BASIC

Account Type

I_BankAccountTypeVH is a Basic CDS View that provides data about "Account Type" in SAP S/4HANA. It reads from 1 data source (fclm_bam_ac_type) and exposes 4 fields with key field BankAccountType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_ac_type fclm_bam_ac_type from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BankAccountType _Text $projection.BankAccountType = _Text.BankAccountType and _Text.Language = $session.system_language
[0..1] I_BankAcctContrTypeVH _ContractType $projection.BankAccountType = _ContractType.BankAccountType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBANKACCTYPEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
EndUserText.label Account Type view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountType acc_type_id
BankAccountTypeText _Text BankAccountTypeText
BankAccountContractType _ContractType BankAccountContractType
BankAccountContractTypeNameassociation
@AbapCatalog.sqlViewName: 'IBANKACCTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@EndUserText.label: 'Account Type'
@Consumption.ranked: true
define view I_BankAccountTypeVH
  as select from fclm_bam_ac_type
  association [0..1] to I_BankAccountType     as _Text         on  $projection.BankAccountType = _Text.BankAccountType
                                                               and _Text.Language              = $session.system_language
  association [0..1] to I_BankAcctContrTypeVH as _ContractType on  $projection.BankAccountType = _ContractType.BankAccountType
{
      //     @ObjectModel.text.association: '_Text'

      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.text.element: ['BankAccountTypeText']
  key acc_type_id as BankAccountType,
      @Search.ranking: #LOW
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      _Text.BankAccountTypeText,
      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.text.element: ['BankAccountContractTypeName']
      @UI.hidden: true
      _ContractType.BankAccountContractType,
      @Search.ranking: #LOW
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      _ContractType.BankAccountContractTypeName

      -- association
      //      _Text

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BANKACCOUNTTYPE",
"I_BANKACCTCONTRTYPEVH",
"FCLM_BAM_AC_TYPE"
],
"ASSOCIATED":
[
"I_BANKACCOUNTTYPE",
"I_BANKACCTCONTRTYPEVH"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/