FINCS_SEL_FSITEM

DDL: FINCS_SEL_FSITEM Type: view

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)

SourceAliasJoin Type
I_CnsldtnFSItem_2 _FSItem from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_CnsldtnFSItem _Extension _FSItem.ConsolidationChartOfAccounts = _Extension.ConsolidationChartOfAccounts and _FSItem.CnsldtnFinancialStatementItem = _Extension.CnsldtnFinancialStatementItem

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/