EITV_EXP_FILES_DOWNLOAD

DDL: EITV_EXP_FILES_DOWNLOAD SQL: ATO_V_FV_DWNL Type: view Package: S_EIT_EXPORT

Template export file download

EITV_EXP_FILES_DOWNLOAD is a CDS View that provides data about "Template export file download" in SAP S/4HANA. It reads from 1 data source (eit_exp_file) and exposes 4 fields with key fields template_id, file_number. Part of development package S_EIT_EXPORT.

Data Sources (1)

SourceAliasJoin Type
eit_exp_file File from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_FV_DWNL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Template export file download view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY template_id eit_exp_file template_id
KEY file_number eit_exp_file template_version
file_name
content eit_exp_file content
@AbapCatalog.sqlViewName: 'ATO_V_FV_DWNL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Template export file download'
define view EITV_EXP_FILES_DOWNLOAD as select from eit_exp_file as File {
  key File.template_id as template_id,
  key File.template_version as file_number,
  concat( File.file_name, '.zip') as file_name,
  File.content

}