Fins_Rev_Rec_Comp_Abgsl
Compatible RA keys
Fins_Rev_Rec_Comp_Abgsl is a CDS View that provides data about "Compatible RA keys" in SAP S/4HANA. It reads from 2 data sources (fins_trr_val, tkkaa).
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| fins_trr_val | b | inner |
| tkkaa | c | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FINS_RR_COMP_KEY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientDependent | true | view | |
| EndUserText.label | Compatible RA keys | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view |
@AbapCatalog.sqlViewName: 'FINS_RR_COMP_KEY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientDependent: true
@EndUserText.label: 'Compatible RA keys'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.buffering.status:#ACTIVE
@AbapCatalog.buffering.type:#FULL
//Determins whether two RA keys are comptible
//Two RA keys are comparible, if they use the same assignment rule
//Selects from fins_trr_val
define view Fins_Rev_Rec_Comp_Abgsl as
select
a.bukrs as bukrs,
a.acc_principle as acc_principle,
a.abgsl as abgsl,
a.method as method,
a.ass_rule as ass_rule,
b.abgsl as abgsl_alt,
b.method as method_alt,
c.tbrr_hide as tbrr_hide,
c.tbrr_area as tbrr_area
from fins_trr_val as a
inner join fins_trr_val as b on b.bukrs = a.bukrs and b.acc_principle = a.acc_principle and b.ass_rule = a.ass_rule
inner join tkkaa as c on c.abgsl = b.abgsl
;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINS_TRR_VAL",
"TKKAA"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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