I_DataExchangeInstructionKeys
Instruction Keys
I_DataExchangeInstructionKeys is a Basic CDS View that provides data about "Instruction Keys" in SAP S/4HANA. It reads from 1 data source (t015w) and exposes 15 fields with key fields BankCountryKey, PaymentMethod, DataExchangeInstructionKey. It has 1 association to related views. Part of development package FINS_AP_BNKCOM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t015w | t015w | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_DataExchInstructionKeysText | _Text | _Text.BankCountryKey = $projection.BankCountryKey and _Text.PaymentMethod = $projection.PaymentMethod and _Text.DataExchangeInstructionKey = $projection.DataExchangeInstructionKey |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSTRNKEYS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | DataExchangeInstructionKey | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Instruction Keys | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankCountryKey | |||
| KEY | PaymentMethod | |||
| KEY | DataExchangeInstructionKey | |||
| DataExchangeInstruction1 | ||||
| DataExchangeInstruction2 | ||||
| DataExchangeInstruction3 | ||||
| DataExchangeInstruction4 | ||||
| DataExchangeInstrnAddlInfo | ||||
| DataExchangeCostAllocation | ||||
| DataExchangePaymentType | ||||
| PaytInstructionPaymentMethod | ||||
| PaymentOrderTransmissionMedium | ||||
| DataExchInstrnApplicationArea | ||||
| IsUrgentPayment | dturg | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IINSTRNKEYS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'DataExchangeInstructionKey'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@EndUserText.label: 'Instruction Keys'
define view I_DataExchangeInstructionKeys
as select from t015w
association [1..*] to I_DataExchInstructionKeysText as _Text on _Text.BankCountryKey = $projection.BankCountryKey
and _Text.PaymentMethod = $projection.PaymentMethod
and _Text.DataExchangeInstructionKey = $projection.DataExchangeInstructionKey
{
key cast(banks as bank1) as BankCountryKey,
key cast(zlsch as farp_schzw_bseg) as PaymentMethod,
key cast(dtaws as farp_dtaws) as DataExchangeInstructionKey,
cast(dtws1 as farp_dtat16) as DataExchangeInstruction1,
cast(dtws2 as farp_dtat17) as DataExchangeInstruction2,
cast(dtws3 as farp_dtat18) as DataExchangeInstruction3,
cast(dtws4 as farp_dtat19) as DataExchangeInstruction4,
cast(dtzus as farp_dtat20) as DataExchangeInstrnAddlInfo,
cast(dtkvs as farp_dtat21) as DataExchangeCostAllocation,
cast(dtkza as farp_dtat22) as DataExchangePaymentType,
cast(ediza as farp_paiart) as PaytInstructionPaymentMethod,
cast(edime as farp_paimed) as PaymentOrderTransmissionMedium,
cast(dtwsc as farp_dtwsc) as DataExchInstrnApplicationArea,
dturg as IsUrgentPayment,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Text
}
where dtaws is not initial
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