Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Introduction:

I got the requirement to Read data from the Application server to Internal table and Download in to Presentation server.

First we should have to know how to upload internal table data to application server, from there how to read the application server data and download to presentation server. 

 

Upload internal table data to application server (AL11):

 

Step 1:

Go to the T-code SE 38.

Step 2:


Give the program as “ ZR_UPLOAD_ITAB_DATA_TO_APP_SER ” and click on create button a pop up should be displayed, where we need to provide the title as " Upload the internal table data to Application server " and type as “ Executable Program ”, Then click on Save button a pop up will be displayed.



Need to provide the package name and click on the continue button.


Here we need to write the source code.


SOURCE CODE:



REPORT zr_upload_itab_data_to_app_ser NO STANDARD PAGE HEADING.
*// Data declaration
DATA:lv_file TYPE rlgrap-filename,
lv_csv_format TYPE truxs_t_text_data.

*// Start of selection
START-OF-SELECTION.
SELECT a~bukrs, a~land1, a~waers, a~spras, b~landx, c~ltext
INTO TABLE @DATA(lt_t001)
FROM t001 AS a
INNER JOIN
t005t AS b
ON a~land1 EQ b~land1
INNER JOIN
tcurt AS c
ON a~waers EQ c~waers WHERE b~spras EQ 'E' AND c~spras EQ 'E'.

*// Converting the internal table data into CSV format
CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
EXPORTING
i_field_seperator = ';'
TABLES
i_tab_sap_data = lt_t001
CHANGING
i_tab_converted_data = lv_csv_format
EXCEPTIONS
conversion_failed = 1
OTHERS = 2.

*// Application server name
lv_file = '/tmp/pchavva.csv'.
*// Open dataset
OPEN DATASET lv_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT .
LOOP AT lv_csv_format INTO DATA(ls_t001).
*// Transfer structure to application server file
TRANSFER ls_t001 TO lv_file.
ENDLOOP.
*// Close data set
CLOSE DATASET lv_file.

 

Save, check and activate.

Click on execute button.

 

AL11 T-Code:

 

Go to T-Code AL11 and check the file in "/tmp" folder name as "pchavva.csv".

 



 

 

Read application server data and download to presentation server:

 

 

Step 3:

Go to the T-code SE 38.

Step 4:


Give the program as “ ZR_READ_APP_DOWNLOAD_TO_PRE ” and click on create button a pop up should be displayed, where we need to provide the title as " Read the Application Server data and Download to Presentation Server " and type as “ Executable Program ”, Then click on Save button a pop up will be displayed.



 

Need to provide the package name and click on the continue button.


Here we need to write the source code.


SOURCE CODE:



REPORT zr_read_app_download_to_pre NO STANDARD PAGE HEADING.
*// Types declaration
TYPES:BEGIN OF ty_final,
var1 TYPE string,
END OF ty_final.

*// Data declaration
DATA:lt_final TYPE TABLE OF ty_final,
lt_final1 TYPE TABLE OF string,
ls_final TYPE ty_final,
lv_file TYPE rlgrap-filename,
lv_data TYPE string,
lv_path TYPE string,
lv_sel_fol TYPE string,
lv_selected_folder TYPE char100,
directory(30).

*// Selection screen design
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-001.
PARAMETERS:p_app_s TYPE rlgrap-filename.
SELECTION-SCREEN END OF BLOCK b1.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_app_s.

*// DIRECTORY NAME
directory = '/'.

*// Fm for Application Server F4 help
CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
EXPORTING
directory = directory
IMPORTING
serverfile = p_app_s
EXCEPTIONS
canceled_by_user = 1
OTHERS = 2.

*// Fm for selecting folder in Presentation server
CALL FUNCTION 'TMP_GUI_BROWSE_FOR_FOLDER'
IMPORTING
selected_folder = lv_selected_folder
EXCEPTIONS
cntl_error = 1
OTHERS = 2.

lv_file = p_app_s.

*// Start of selection
START-OF-SELECTION .

*// Open dataset, From application server get the data
OPEN DATASET lv_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc NE 0.
MESSAGE 'unable to open the file' TYPE 'I'.
ELSE.
*// Read the data from app server and put into variable
DO.
READ DATASET lv_file INTO lv_data.
IF sy-subrc EQ 0.
ls_final-var1 = lv_data.
*// Append workarea to internal table
APPEND ls_final TO lt_final.
CLEAR ls_final.
ELSE.
EXIT.
ENDIF.
ENDDO.
ENDIF.

*// Split file name and put in to internal table
SPLIT lv_file AT '/' INTO TABLE lt_final1.

*// Count how many records in internal table
DATA(lv_count) = lines( lt_final1 ).

*// Read itab into workarea index lv_count
READ TABLE lt_final1 INTO DATA(ls_final1) INDEX lv_count.

*// close the path
CLOSE DATASET lv_file.
*// Concatinate the presenation folder and application filename
CONCATENATE lv_selected_folder '\' ls_final1 INTO lv_sel_fol.

lv_path = lv_sel_fol.

*// Fm for download the file into presenation server
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = lv_path
filetype = 'ASC'
write_field_separator = 'X'
TABLES
data_tab = lt_final
EXCEPTIONS
file_write_error = 1
no_batch = 2
gui_refuse_filetransfer = 3
invalid_type = 4
no_authority = 5
unknown_error = 6
header_not_allowed = 7
separator_not_allowed = 8
filesize_not_allowed = 9
header_too_long = 10
dp_error_create = 11
dp_error_send = 12
dp_error_write = 13
unknown_dp_error = 14
access_denied = 15
dp_out_of_memory = 16
disk_full = 17
dp_timeout = 18
file_not_found = 19
dataprovider_exception = 20
control_flush_error = 21
OTHERS = 22.

IF sy-subrc EQ 0.
MESSAGE: 'Application server file has been downloaded to Presentation server' TYPE 'I'.
ELSE.
MESSAGE: 'The data has not downloaded' TYPE 'I'.
ENDIF.

 

Save, check and activate.

Click on execute button.

 

Output:

 

Click on F4 help, and extend the 'tmp' folder



 

 

Double click on file name (pchavva.csv), The below screen will be displayed, select the folder and click on 'ok' button

 



 

Click on 'Execute', and 'allow' buttons



The below Information message has been displayed.



 

Test Case: 

 

Open the presentation file as 'pchavva.csv''

 



 

Conclusion:

 

By following the above steps we have updated the internal table data to application server (AL11), reading and download the application server data to presentation server.

Hope this will hep.

Thanks for reading...

 
3 Comments