I_FinancialClosingRunTypeText
Financial Closing Run Type - Text
I_FinancialClosingRunTypeText is a Basic CDS View that provides data about "Financial Closing Run Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields BusinessTransactionCategory, Language. Part of development package FINS_FI_CLS_ACT_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | l | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICLSRTYPETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Financial Closing Run Type - Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessTransactionCategory | |||
| KEY | Language | t | ddlanguage | |
| BusTransactionCategoryName |
@AbapCatalog.sqlViewName: 'ICLSRTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Financial Closing Run Type - Text'
@VDM.viewType: #BASIC
// representativeKey: 'FinancialClosingRunType',
@ObjectModel: {
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING }
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_FinancialClosingRunTypeText
as select from dd07l as l
left outer to one join dd07t as t on t.domvalue_l = l.domvalue_l
and t.domname = l.domname
and t.ddlanguage = $session.system_language
{
@ObjectModel.text.element: ['BusTransactionCategoryName']
key cast(l.domvalue_l as fins_bttype) as BusinessTransactionCategory,
@Semantics.language: true
@UI.hidden: true
key t.ddlanguage as Language,
@Semantics.text: true
cast ( ddtext as cls_run_type_text ) as BusTransactionCategoryName
}
where
l.domname = 'CLS_RUN_TYPE'
and l.as4local = 'A';
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