Application Development 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: 

Export data in Excel file - Debug and Break Point

Former Member
0 Kudos

In the program RFUMSV00 the data been displayed on the screen with the function REUSE_ALV_LIST_DISPLAY.

With "Cntrl + Shift + F9" I exported the list of data in an Excel file.

How can I see, with Debug, where the program RFUMSV00 passed the data to Excel File? I can indicate the point, In the program, where I need to set the break point?

Thanks,

Serena

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

This download functionality has nothing to have with program RFUMSV00. It is actually processed by REUSE_ALV_LIST_DISPLAY fm, which calls fm LIST_COMMAND which finally calls fm LIST_DOWNLOAD, where you will actually find the downloading part (in fact in another fm, DOWNLOAD_LIST)...

to resume: REUSE_ALV_LIST_DISPLAY->LIST_COMMAND->LIST_DOWNLOAD->DOWNLOAD_LIST

so I would put the break-point in the last one..

Kr,

Manu.

correction: I made a mistake, the break-point should be set in LIST_DOWNLOAD...where you will find the call to fm LIST_CONVERT_TO_DAT which is responsible of the download...

Edited by: Manu D'Haeyer on Dec 9, 2011 1:46 PM

1 REPLY 1

Former Member
0 Kudos

Hi,

This download functionality has nothing to have with program RFUMSV00. It is actually processed by REUSE_ALV_LIST_DISPLAY fm, which calls fm LIST_COMMAND which finally calls fm LIST_DOWNLOAD, where you will actually find the downloading part (in fact in another fm, DOWNLOAD_LIST)...

to resume: REUSE_ALV_LIST_DISPLAY->LIST_COMMAND->LIST_DOWNLOAD->DOWNLOAD_LIST

so I would put the break-point in the last one..

Kr,

Manu.

correction: I made a mistake, the break-point should be set in LIST_DOWNLOAD...where you will find the call to fm LIST_CONVERT_TO_DAT which is responsible of the download...

Edited by: Manu D'Haeyer on Dec 9, 2011 1:46 PM