I_TimeStreamText
Time Stream text view
I_TimeStreamText is a Basic CDS View that provides data about "Time Stream text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields CalendarTimeFrame, Language. Part of development package VDM_MD_PRODUCT-SCM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITIMESTREAMTXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | CalendarTimeFrame | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Time Stream text view | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CalendarTimeFrame | domvalue_l | ||
| KEY | Language | |||
| CalendarTimeFrameDesc |
@AbapCatalog.sqlViewName: 'ITIMESTREAMTXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'CalendarTimeFrame'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Time Stream text view'
define view I_TimeStreamText
as select from dd07t
{
key domvalue_l as CalendarTimeFrame,
@Semantics.language:true
key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
// cast ( substring ( ddtext, 1, 60 ) as val_text ) as CalendarTimeFrameDesc
cast( ddtext as val_text ) as CalendarTimeFrameDesc
}
where
domname = 'TSTRTYPE'
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