FCLM_BSEG_ACTIVE_LIST

DDL: FCLM_BSEG_ACTIVE_LIST SQL: FCLM_ACT_LIST Type: view Package: FCLM_REUSE

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)

SourceAliasJoin Type
t000 b inner

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
    ;