EITV_EXP_FILES_DOWNLOAD
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| eit_exp_file | File | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EIT_EXP_FILE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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