I_DispatchTimeText
Dispatch Time of Output Req Item - Text
I_DispatchTimeText is a Basic CDS View that provides data about "Dispatch Time of Output Req Item - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields DispatchTime, Language. It has 2 associations to related views. Part of development package APOC_OUTPUT_CONTROL_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DispatchTime | _DispatchTime | $projection.DispatchTime = _DispatchTime.DispatchTime |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDISPTIMETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DispatchTime | view | |
| EndUserText.label | Dispatch Time of Output Req Item - Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DispatchTime | domvalue_l | Dispatch Time | |
| KEY | Language | ddlanguage | ||
| DispatchTimeDescription | ddtext | |||
| _DispatchTime | _DispatchTime | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IDISPTIMETXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #META,
dataCategory: #TEXT,
representativeKey: 'DispatchTime'
}
@EndUserText.label: 'Dispatch Time of Output Req Item - Text'
define view I_DispatchTimeText
as select from dd07t
association [0..1] to I_DispatchTime as _DispatchTime on $projection.DispatchTime = _DispatchTime.DispatchTime
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DispatchTime'
@EndUserText.label: 'Dispatch Time'
key domvalue_l as DispatchTime,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 1,
ranking: #LOW
}
ddtext as DispatchTimeDescription,
//Associations
_DispatchTime,
_Language
}
where dd07t.domname = 'APOC_OR_DISPATCH_TIME'
and dd07t.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