I_IncomingPaytFileType

DDL: I_INCOMINGPAYTFILETYPE SQL: IINCPMNTFLTYPE Type: view BASIC

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)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IncomingPaytFileTypeText _Text $projection.IncomingPaymentFileType = _Text.IncomingPaymentFileType

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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';