I_IncomingPaytFileUploadType

DDL: I_INCOMINGPAYTFILEUPLOADTYPE SQL: IINCPAYTFLUPLDTP Type: view BASIC Package: FINS_FIS_APAR

Incoming Payment File Upload Type

I_IncomingPaytFileUploadType is a Basic CDS View (Dimension) that provides data about "Incoming Payment File Upload Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field IncomingPaymentFileUploadType. It has 1 association to related views. Part of development package FINS_FIS_APAR.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IncomingPaytFileUpldTypeText _Text $projection.IncomingPaymentFileUploadType = _Text.IncomingPaymentFileUploadType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINCPAYTFLUPLDTP view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey IncomingPaymentFileUploadType 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 Upload Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IncomingPaymentFileUploadType
_Text _Text
@AbapCatalog.sqlViewName: 'IINCPAYTFLUPLDTP'
@VDM.viewType: #BASIC
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.representativeKey: 'IncomingPaymentFileUploadType'
@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 Upload Type'
define view I_IncomingPaytFileUploadType as select from dd07l
association [0..*] to I_IncomingPaytFileUpldTypeText as _Text on $projection.IncomingPaymentFileUploadType = _Text.IncomingPaymentFileUploadType {
  
  @ObjectModel.text.association: '_Text'
  key  cast( substring( domvalue_l, 1, 1) as farp_eupload_type ) as IncomingPaymentFileUploadType,
    _Text
  
}
where dd07l.domname = 'FARP_EUPLOAD_TYPE' and dd07l.as4local = 'A';