FAA_CURTYP
Intern: Waehrungsinformationen fuer AfA-Bereiche
FAA_CURTYP is a CDS View in S/4HANA. Intern: Waehrungsinformationen fuer AfA-Bereiche. It contains 1 fields. 12 CDS views read from this table.
CDS Views using this table (12)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| Faa_Anea2 | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen | |
| Faa_Anep2 | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen | |
| Faa_Anlc_Afblpe | view | inner | Ermittelt ANLC-AFBLPE | |
| Faa_Anlc2_Adoc | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen | |
| Faa_Anlc2_P_Adoc | view | inner | Per. parallele Waehrung Bereiche mappen | |
| Faa_Anlc2_P_Plan | view | inner | Per. parallele Waehrung Bereiche mappen | |
| Faa_Anlc2_P_Stat | view | inner | Per. parallele Waehrung Bereiche mappen | |
| Faa_Anlc2_Plan | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen | |
| Faa_Anlc2_Stat | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen | |
| Faa_Anlp_Kostl | view | inner | Intern: Determine KOSTL for ANLP records | |
| Faa_Anlp_Poper | view | inner | Intern: Ermittelt Perioden fuer ANLP-Saetze | |
| Faa_Anlp2 | view | inner | Intern: Parallele Waehrungen auf AfA-Bereiche mappen |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | afabe | afabe,afaber | 12 |
@AbapCatalog.sqlViewName: 'FAAV_CURTYP'
@EndUserText.label: 'Intern: Waehrungsinformationen fuer AfA-Bereiche'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
// this view is just to find the corresponding amount fields (HSL, KSL, OSL)
// for depr.areas that post parallel currencies into GL
----------------------------------------------------------------------------
define view Faa_Curtyp
// select for FIN_AA_CONFIG_REDESIGN_1 = OFF
// =========================================
as select from FAA_CURTYP_O as v1
{
key v1.bukrs as bukrs,
key v1.afabe as afabe,
v1.afapl as afapl,
v1.lead_afabe as lead_afabe,
v1.rep_ledger as rep_ledger,
v1.curtp as curtp,
v1.hsl as hsl,
v1.ksl as ksl,
v1.osl as osl,
v1.vsl as vsl,
v1.bsl as bsl,
v1.csl as csl,
v1.dsl as dsl,
v1.esl as esl,
v1.fsl as fsl,
v1.gsl as gsl,
v1.afabe_type as afabe_type
}
union all
// select for FIN_AA_CONFIG_REDESIGN_1 = ON
// ========================================
select from FAA_CURTYP_N as v2
{
key v2.bukrs as bukrs,
key v2.afabe as afabe,
v2.afapl as afapl,
v2.lead_afabe as lead_afabe,
v2.rep_ledger as rep_ledger,
v2.curtp as curtp,
v2.hsl as hsl,
v2.ksl as ksl,
v2.osl as osl,
v2.vsl as vsl,
v2.bsl as bsl,
v2.csl as csl,
v2.dsl as dsl,
v2.esl as esl,
v2.fsl as fsl,
v2.gsl as gsl,
v2.afabe_type as afabe_type
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAA_CURTYP_N",
"FAA_CURTYP_O"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/