Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Data extraction from SAP source to Excel

Former Member
0 Likes
1,430

Hi Experts,

I have a requirement to extract FI and HR datas to excel file. Which is the best way to do it? Can i use ABAP Query with LDB or Quickviewer ? Is there any other solution to get it done through writing ABAP/4 source code ? Kindly provide me feasible solution ASAP ..... Thank you

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,076

through ABAP Query its very easy, you can do it through ABAP code also but its time taken process

7 REPLIES 7
Read only

Former Member
0 Likes
1,077

through ABAP Query its very easy, you can do it through ABAP code also but its time taken process

Read only

0 Likes
1,076

hi karthikeyan ,

as one of our friend suggested it is better to use abap quick viewer...

Regards

linganna

Read only

Former Member
0 Likes
1,076

Hi Karthikeyan,

You can use 'GUI_DOWNLOAD' standard function module for this provided you have all the required data fetched in an internal table.

Read only

Former Member
0 Likes
1,076

Hi,

You can use SAP Query(SQ01), there you can directly maintain the local server file path where you want to download the output. The query in background itself generates a dynamic program.

In case this takes much time to execute, you can create a standard report to generate the output to a local file, as you can implement SORT and all to enhance performance.

Thanks,

Ipsita

Read only

Former Member
0 Likes
1,076

Hi,

Check below link.....

Read only

Former Member
0 Likes
1,076

If you want to download ALL the data, do not forget the lines limit of Excel is 65535.

Read only

Former Member
0 Likes
1,076

Hi all,

Thanks everyone for valuable replies. I was given access to Production server only, where i had lots of limitation to create custom reports to extract large sets of datas. I managed to do with Quickviewer anyway. Thanks once again everyone for your suggestions.