I_TicketMovementType
Type Of Movement Descriptions
I_TicketMovementType is a Basic CDS View that provides data about "Type Of Movement Descriptions" in SAP S/4HANA. It reads from 2 data sources (dd07v, toij_tkt_type) and exposes 3 fields with key field NominationTicketType.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | DomainTexts | left_outer |
| toij_tkt_type | TicketType | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITICKETMVTTYPES | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Type Of Movement Descriptions | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NominationTicketType | toij_tkt_type | tkt_type | |
| QuantityMeasuringIdentifier | toij_tkt_type | tkt_qmm | ||
| TypeOfMovement | dd07v | ddtext |
@AbapCatalog.sqlViewName: 'ITICKETMVTTYPES'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Type Of Movement Descriptions'
define view I_TicketMovementType
as select from toij_tkt_type as TicketType
left outer join dd07v as DomainTexts on DomainTexts.domname = 'OIJ_EL_TKT_QMM'
and DomainTexts.ddlanguage = $session.system_language
and DomainTexts.domvalue_l = TicketType.tkt_qmm
{
key TicketType.tkt_type as NominationTicketType,
TicketType.tkt_qmm as QuantityMeasuringIdentifier,
DomainTexts.ddtext as TypeOfMovement
}
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