faa_bf_active

DDL: FAA_BF_ACTIVE Type: view Package: FINS_FAA_CFG_DB

Check if BF FIN_AA_CONFIG_REDESIGN_1 is active

faa_bf_active is a CDS View that provides data about "Check if BF FIN_AA_CONFIG_REDESIGN_1 is active" in SAP S/4HANA. It reads from 1 data source (P_TF_AssetRedesignSwitchStatus) and exposes 2 fields with key field BF_NAME. Part of development package FINS_FAA_CFG_DB.

Data Sources (1)

SourceAliasJoin Type
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_BF_ACTIVE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Check if BF FIN_AA_CONFIG_REDESIGN_1 is active view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BF_NAME
is_active _bf IsActive
@AbapCatalog: {sqlViewName: 'FAAV_BF_ACTIVE', compiler.compareFilter: true, preserveKey: true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
--@AbapCatalog.buffering.status: #ACTIVE
--@AbapCatalog.buffering.type: #FULL
--@VDM.private: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Check if BF FIN_AA_CONFIG_REDESIGN_1 is active'
define view faa_bf_active
  as select from P_TF_AssetRedesignSwitchStatus( P_SAPClient : $session.client ) as _bf
{ 
  key cast('FIN_AA_CONFIG_REDESIGN_1' as sfw_bfunction ) as BF_NAME,
  _bf.IsActive as is_active
 }
//  as select from P_AssetConfignBusinessFunction as _bf

  //    left outer join I_FeatureToggle                as _toggle on _toggle.FeatureToggle = _bf.BusinessFunction

//{

// key _bf.BusinessFunction       as bf_name,

//     //      case when _bf.BusinessFunctionStatus = 'X'

//      //            and _toggle.Status = 'X'

//      //      then 'X' else ' ' end       as is_active

//      _bf.BusinessFunctionStatus as is_active

//}

//where

//  _bf.BusinessFunction = 'FIN_AA_CONFIG_REDESIGN_1' // Only Config Redesign!