‎2007 Dec 17 11:32 AM
Hi,
I need to "Extract file of financial data for upload to consolidation system for corporate and management reporting".
The extract will consist of two separate reports, combined into one comma separated text file.
How do I go about it....I have no idea of interfaces and need to finish this task
Please give step by step approach!!!!
‎2007 Dec 17 11:55 AM
‎2007 Dec 17 12:11 PM
hi
good
could you please elaborate your requiement in the ABAP point of view,like how you want the selection screen,which are the table you want to use.
I hope i can give you better explanation after that.
thanks
mrutyun^
‎2007 Dec 17 12:59 PM
Hi ,
It seems like u just need to pick data from tha tables and provide it to the client so that it can be used in some other application .
According to the selction criteria , pick your data and process it to fill the final internal table of yours which will be holding all to be transported records
Use FM gui_download
Call Function Gui_Download
Exporting
File name = ' your file path (a .txt file) '
.
Has_field_seperator = ',' " As in your case
Importing
Exceptions
By this way u can get the file seperated by comma in ur machine , then u can send it across.
Reward if found useful.
Regard
SureshP