fgl_lib_txt_prctr

DDL: FGL_LIB_TXT_PRCTR SQL: FILIBTXTPRCTR Type: view

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.

Data Sources (2)

SourceAliasJoin Type
cepc cepc from
cepct cepct left_outer

Parameters (1)

NameTypeDefault
p_langu spras

Annotations (10)

NameValueLevelField
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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY kokrs cepc kokrs
KEY prctr cepc prctr
KEY datbi cepc datbi
datab cepc datab
ktext cepct ktext
ltext cepct ltext
@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":""
}
}*/