FINCS_SEL_FSITEM
FINCS_SEL_FSITEM is a CDS View in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFSItem_2) and exposes 7 fields with key fields ConsolidationChartOfAccounts, FinancialStatementItem. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnFSItem_2 | _FSItem | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_CnsldtnFSItem | _Extension | _FSItem.ConsolidationChartOfAccounts = _Extension.ConsolidationChartOfAccounts and _FSItem.CnsldtnFinancialStatementItem = _Extension.CnsldtnFinancialStatementItem |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | FINCSSELFSITM | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationChartOfAccounts | ConsolidationChartOfAccounts | ||
| KEY | FinancialStatementItem | CnsldtnFinancialStatementItem | ||
| FinancialStatementItemType | ConsolidationFSItemType | |||
| BreakdownCategory | ConsolidationBreakdownCategory | |||
| IsConsolidationItem | CnsldtnFSItemIsForCnsldtnOnly | |||
| FinancialStatementItemIsBlkd | CnsldtnFSItemPostingIsBlocked | |||
| _Text | _Text |
@AbapCatalog : {
compiler : {
compareFilter: true
},
preserveKey: true,
sqlViewName: 'FINCSSELFSITM'
}
@AccessControl : {
authorizationCheck: #MANDATORY
}
@ClientHandling : {
algorithm: #SESSION_VARIABLE
}
@Metadata : {
ignorePropagatedAnnotations: true
}
@ObjectModel : {
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #M
}
}
define view FINCS_SEL_FSITEM
as select from I_CnsldtnFSItem_2 as _FSItem
//do not expose this association in the projection list of the view
association [1..1] to E_CnsldtnFSItem as _Extension on _FSItem.ConsolidationChartOfAccounts = _Extension.ConsolidationChartOfAccounts
and _FSItem.CnsldtnFinancialStatementItem = _Extension.CnsldtnFinancialStatementItem
{
key ConsolidationChartOfAccounts,
@ObjectModel.text.association: '_Text' //required for text handling during resolution
key CnsldtnFinancialStatementItem as FinancialStatementItem, // old name must be stable since it is stored in selection expression tables of unified selection
ConsolidationFSItemType as FinancialStatementItemType,
ConsolidationBreakdownCategory as BreakdownCategory,
CnsldtnFSItemIsForCnsldtnOnly as IsConsolidationItem,
CnsldtnFSItemPostingIsBlocked as FinancialStatementItemIsBlkd,
/* Associations */
_Text //required for text handling during resolution
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNFSITEM_2"
],
"ASSOCIATED":
[
"E_CNSLDTNFSITEM",
"I_CNSLDTNFSITEMTEXT_2"
],
"BASE":
[
"I_CNSLDTNFSITEM_2"
],
"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