FCLM_BSEG_ACTIVE_LIST
Active Company Code List of FI
FCLM_BSEG_ACTIVE_LIST is a CDS View that provides data about "Active Company Code List of FI" in SAP S/4HANA. It reads from 1 data source (t000) and exposes 2 fields. Part of development package FCLM_REUSE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t000 | b | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FCLM_ACT_LIST | view | |
| ClientDependent | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Active Company Code List of FI | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| logsys | ||||
| bukrs | company_code |
@AbapCatalog.sqlViewName: 'FCLM_ACT_LIST'
--@ClientDependent: true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Active Company Code List of FI'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
define view FCLM_BSEG_ACTIVE_LIST as select distinct from fqmc_activation as a
inner join t000 as b
on a.mandt = b.mandt
{
case when a.origin_system = '' then b.logsys else a.origin_system end as logsys,company_code as bukrs
} where activation_status = '1'
-- and ( origin_application = 'BKPF' or origin_application = 'FI' );
and origin_application = 'BKPF' -- Note 2891870
;
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