I_IncomingPaymentFileStatus
Incoming Payment File Status
I_IncomingPaymentFileStatus is a Basic CDS View (Dimension) that provides data about "Incoming Payment File Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field IncomingPaymentFileStatus. It has 1 association to related views. Part of development package FINS_FIS_APAR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_IncomingPaytFileStatusText | _Text | $projection.IncomingPaymentFileStatus = _Text.IncomingPaymentFileStatus |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINCPMNTFLSTS | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | IncomingPaymentFileStatus | 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 Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IncomingPaymentFileStatus | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IINCPMNTFLSTS'
@VDM.viewType: #BASIC
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.representativeKey: 'IncomingPaymentFileStatus'
@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 Status'
define view I_IncomingPaymentFileStatus as select from dd07l
association [0..*] to I_IncomingPaytFileStatusText as _Text on $projection.IncomingPaymentFileStatus = _Text.IncomingPaymentFileStatus {
@ObjectModel.text.association: '_Text'
key cast( substring( domvalue_l, 1, 1) as farp_efile_status ) as IncomingPaymentFileStatus,
_Text
}
where dd07l.domname = 'FARP_EFILE_STATUS' 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