2010 May 11 6:04 AM
dear experts,
data : t001w like table of t001w with header line.
data: xml_out type string .
select * from t001w into table t001w.
call transformation ('ID')
source tab = t001w[]
result xml xml_out.
hear call transformation is giving result xml_out.
how can i download it to my desktop.
please guide me how to download.
thanks & regards,
surendra.
dear experts,
data : t001w like table of t001w with header line.
data: xml_out type string .
select * from t001w into table t001w.
call transformation ('ID')
source tab = t001w[]
result xml xml_out.
hear call transformation is giving result xml_out.
how can i download it to my desktop.
please guide me how to download.
thanks & regards,
surendra.
2010 May 11 6:31 AM
Try this way
CALL FUNCTION 'HR_EFI_CONVERT_STRING_TO_TABLE'
EXPORTING
i_string = xml_out
i_tabline_length = 100
TABLES
et_table = IT_OUTPUT.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filetype = 'BIN'
filename = 'c: emp est.xml'
TABLES
data_tab = IT_OUTPUT.
a®
2010 May 11 6:47 AM
hi,
after getting the data in XML_OUT, use any of the given below function module
HR_EFI_CONVERT_STRING_TO_TABLE convert a string into a table
CONVERT_STRING_TO_TABLE Convert string to table
*CONVERT_TABLE_TO_STRING Convert string to table *
then pass the internal table to the GUI_DOWNLOAD to download the data.
Hope this helps
Regards
Ritesh
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |