faa_bf_active
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)
| Source | Alias | Join Type |
|---|---|---|
| P_TF_AssetRedesignSwitchStatus | P_TF_AssetRedesignSwitchStatus | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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!
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA