I_DataExchInstructionKeysText
Instruction Keys (Text)
I_DataExchInstructionKeysText is a Basic CDS View that provides data about "Instruction Keys (Text)" in SAP S/4HANA. It reads from 1 data source (t015wt) and exposes 7 fields with key fields Language, BankCountryKey, PaymentMethod, DataExchangeInstructionKey. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t015wt | t015wt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_DataExchangeInstructionKeys | _InstructionKeys | _InstructionKeys.BankCountryKey = $projection.BankCountryKey and _InstructionKeys.PaymentMethod = $projection.PaymentMethod and _InstructionKeys.DataExchangeInstructionKey = $projection.DataExchangeInstructionKey |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDEINSTRNKEYT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DataExchangeInstructionKey | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Instruction Keys (Text) | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | BankCountryKey | banks | ||
| KEY | PaymentMethod | zlsch | ||
| KEY | DataExchangeInstructionKey | dtaws | ||
| DataExchInstructionKeyName | text | |||
| _InstructionKeys | _InstructionKeys | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IDEINSTRNKEYT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DataExchangeInstructionKey'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Instruction Keys (Text)'
define view I_DataExchInstructionKeysText
as select from t015wt
association [1..1] to I_DataExchangeInstructionKeys as _InstructionKeys on _InstructionKeys.BankCountryKey = $projection.BankCountryKey
and _InstructionKeys.PaymentMethod = $projection.PaymentMethod
and _InstructionKeys.DataExchangeInstructionKey = $projection.DataExchangeInstructionKey
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
key banks as BankCountryKey,
key zlsch as PaymentMethod,
key dtaws as DataExchangeInstructionKey,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
@Semantics.text: true
text as DataExchInstructionKeyName,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_InstructionKeys,
_Language
}
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