fgl_lib_txt_prctr
FI LIB: Profit center texts
fgl_lib_txt_prctr is a CDS View that provides data about "FI LIB: Profit center texts" in SAP S/4HANA. It reads from 2 data sources (cepc, cepct) and exposes 5 fields with key fields kokrs, prctr, datbi. Part of development package FAGL_REPORTING_EN.
Parameters (2)
| Name | Type | Default |
|---|---|---|
| p_langu | spras | |
| p_date | dats |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FILIBTXTPRCTR | view | |
| EndUserText.label | FI LIB: Profit center texts | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
@AbapCatalog.sqlViewName: 'FILIBTXTPRCTR'
@EndUserText.label: 'FI LIB: Profit center texts'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.viewEnhancementCategory: [#NONE]
--@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #D,
sizeCategory: #S,
dataClass: #MASTER
}
define view fgl_lib_txt_prctr
with parameters
p_langu : spras,
p_date : dats
as select from cepc
left outer join cepct on cepc.kokrs = cepct.kokrs
and cepc.prctr = cepct.prctr
and cepc.datbi = cepct.datbi
{
key cepc.kokrs,
key cepc.prctr,
key cepc.datbi,
cepct.ktext,
cepct.ltext
}
where
cepc.datab <= $parameters.p_date
and cepc.datbi >= $parameters.p_date
and cepct.spras = $parameters.p_langu
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