FI_F4_BVTYP_LFBK

DDL: FI_F4_BVTYP_LFBK SQL: FIF4BVTYPK Type: view Package: FBAS_APAR

Only for usage in function module FI_F4_BVTYP

FI_F4_BVTYP_LFBK is a CDS View that provides data about "Only for usage in function module FI_F4_BVTYP" in SAP S/4HANA. It reads from 1 data source (I_SupplierBankDetails) and exposes 21 fields with key fields lifnr, banks, bankl, bankn. Part of development package FBAS_APAR.

Data Sources (1)

SourceAliasJoin Type
I_SupplierBankDetails I_SupplierBankDetails from

Annotations (11)

NameValueLevelField
EndUserText.label Only for usage in function module FI_F4_BVTYP view
AbapCatalog.sqlViewName FIF4BVTYPK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY lifnr
KEY banks
KEY bankl
KEY bankn
bvtyp
bkont
bkref
Supplier Supplier
AuthorizationGroup AuthorizationGroup
BankCountry BankCountry
BusinessPartner BusinessPartner
Bank I_SupplierBankDetails Bank
BankAccount I_SupplierBankDetails BankAccount
PaymentSystem _BusinessPartnerBankAlias PaymentSystem
AliasType _BusinessPartnerBankAlias AliasType
BPBankAccountAliasName _BusinessPartnerBankAlias BPBankAccountAliasName
BPBankUUID I_SupplierBankDetails BPBankUUID
IBAN I_SupplierBankDetails IBAN
_Supplier _Supplier
_BusinessPartnerBank _BusinessPartnerBank
_BusinessPartnerBankAlias _BusinessPartnerBankAlias
//

// The view must not be reused. The view belongs exclusively to function module FI_F4_BVTYP

//


//GENERATED:006:79Zi5wn57jYqxV0F3eOKVG

@EndUserText.label: 'Only for usage in function module FI_F4_BVTYP'
@AbapCatalog.sqlViewName: 'FIF4BVTYPK'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER

//The view must not be reused. The view belongs exclusively to function module FI_F4_BVTYP

define view FI_F4_BVTYP_LFBK
  as select from I_SupplierBankDetails
{

  key cast ( Supplier                as lifnr preserving type ) as lifnr,
  key cast ( BankCountry             as banks preserving type ) as banks,
  key cast ( Bank                    as bankk preserving type ) as bankl,
  key cast ( BankAccount             as bankn preserving type ) as bankn,

      cast ( BPBankAccountInternalID as bvtyp preserving type ) as bvtyp,
      cast ( BankControlKey          as bkont preserving type ) as bkont,
      cast ( BankDetailReference     as bkref preserving type ) as bkref,

      @Consumption.hidden: true
      Supplier,

      @Consumption.hidden: true
      AuthorizationGroup,

      @Consumption.hidden: true
      BankCountry,

      @Consumption.hidden: true
      BusinessPartner,
      @Consumption.hidden: true
      I_SupplierBankDetails.Bank,
      @Consumption.hidden: true
      I_SupplierBankDetails.BankAccount,

      //Start: add for partner bank type F4 payment alias

      @Consumption.hidden: true
      _BusinessPartnerBankAlias.PaymentSystem,
      @Consumption.hidden: true
      _BusinessPartnerBankAlias.AliasType,
      @Consumption.hidden: true
      _BusinessPartnerBankAlias.BPBankAccountAliasName,
      @Consumption.hidden: true
      I_SupplierBankDetails.BPBankUUID,
      @Consumption.hidden:true
      I_SupplierBankDetails.IBAN,
      //End: add for partner bank type F4 payment alias

      @Consumption.hidden: true
      _Supplier,
      @Consumption.hidden: true
      _BusinessPartnerBank,
      //Start: add for partner bank type F4 payment alias

      @Consumption.hidden: true
      _BusinessPartnerBankAlias
      //End: add for partner bank type F4 payment alias

}