I_IncomingPaytFileType
Incoming Payment File Type
I_IncomingPaytFileType is a Basic CDS View (Dimension) that provides data about "Incoming Payment File Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field IncomingPaymentFileType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_IncomingPaytFileTypeText | _Text | $projection.IncomingPaymentFileType = _Text.IncomingPaymentFileType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINCPMNTFLTYPE | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | IncomingPaymentFileType | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Incoming Payment File Type | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IncomingPaymentFileType | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IINCPMNTFLTYPE'
@VDM.viewType: #BASIC
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.representativeKey: 'IncomingPaymentFileType'
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Incoming Payment File Type'
define view I_IncomingPaytFileType as select from dd07l
association [0..*] to I_IncomingPaytFileTypeText as _Text on $projection.IncomingPaymentFileType = _Text.IncomingPaymentFileType {
@ObjectModel.text.association: '_Text'
key cast( substring( domvalue_l, 1, 1) as farp_efiletype ) as IncomingPaymentFileType,
_Text
}
where dd07l.domname = 'FARP_EFILETYPE' and dd07l.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