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 6 fields with key fields kokrs, prctr, datbi.
Parameters (1)
| Name | Type | Default |
|---|---|---|
| p_langu | spras |
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
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,
cepc.datab,
cepct.ktext,
cepct.ltext
}
where cepct.spras = $parameters.p_langu
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CEPC",
"CEPCT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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