I_FSItemBySemanticTag
Fetch Financial Statement Item By Semantic Tag
I_FSItemBySemanticTag is a Basic CDS View that provides data about "Fetch Financial Statement Item By Semantic Tag" in SAP S/4HANA. It reads from 2 data sources (finsc_fagl2semta, hrrp_node) and exposes 11 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| finsc_fagl2semta | FAGL | from |
| hrrp_node | HRRP | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFSITMBYSEMTA | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | Fetch Financial Statement Item By Semantic Tag | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| FinancialStatementVariant | finsc_fagl2semta | versn | ||
| HierarchyNode | hrrp_node | hrynode | ||
| HierarchyVersion | hrrp_node | hryver | ||
| ValidityStartDate | hrrp_node | hryvalfrom | ||
| ValidityEndDate | hrrp_node | hryvalto | ||
| SemanticTag | finsc_fagl2semta | fins_sem_tag | ||
| FinancialStatementItem | finsc_fagl2semta | ergsl | ||
| LowerBoundaryAccount | finsc_fagl2semta | vonkt | ||
| UpperBoundaryAccount | finsc_fagl2semta | biskt | ||
| LowerBoundaryFunctionalArea | finsc_fagl2semta | vonfb | ||
| UpperBoundaryFunctionalArea | finsc_fagl2semta | bisfb |
@AbapCatalog.sqlViewName: 'IFSITMBYSEMTA'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MIXED
@EndUserText.label: 'Fetch Financial Statement Item By Semantic Tag'
define view I_FSItemBySemanticTag
as select from finsc_fagl2semta as FAGL
inner join hrrp_node as HRRP on FAGL.versn = HRRP.hryid
and FAGL.ergsl = HRRP.nodevalue
{
FAGL.versn as FinancialStatementVariant,
HRRP.hrynode as HierarchyNode,
HRRP.hryver as HierarchyVersion,
HRRP.hryvalfrom as ValidityStartDate,
HRRP.hryvalto as ValidityEndDate,
FAGL.fins_sem_tag as SemanticTag,
FAGL.ergsl as FinancialStatementItem, //NodeValue,
FAGL.vonkt as LowerBoundaryAccount,
FAGL.biskt as UpperBoundaryAccount,
FAGL.vonfb as LowerBoundaryFunctionalArea,
FAGL.bisfb as UpperBoundaryFunctionalArea
}
where
HRRP.nodetype = 'N'
and HRRP.hryvalto = '99991231';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINSC_FAGL2SEMTA",
"HRRP_NODE"
],
"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