‎2009 May 28 12:43 PM
Hi Experts,
I have requirement in my project, inwhich I have to search all the custom development program which are storing files in presentation server.
Then I have to generalize the path of storing in all the programs like ( C:\XXXX ) only.
For this first of all I have to find which are the program doing presentation server file saving.
I did where used list using the keyword 'GUI_DOWNLOAD', 'FILE_SAVE_DIALOG'.
Can you suggest some other function module or some other OO functions which will be helpful keywords to search more program.
Thanks and regards,
Venkat
‎2009 May 28 12:45 PM
Hi,
Use this report RPR_ABAP_SOURCE_SCAN to scan the string used in the programs.
‎2009 May 28 12:46 PM
CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
Function Module :
WS_DOWNLOAD
DOWNLOAD
Edited by: Swastik Bharati on May 28, 2009 1:46 PM
‎2009 May 28 12:47 PM
there are too many FMs to download to presentation server,...
ex: cl_gui_frontend_services->GUI_DOWNLOAD
and many many more..
‎2009 May 28 1:15 PM
Use the table: TRDIRT for finding the custom program name (u may develope ALV and can copy source codes at required location by clicking on program name)
use READ REPORT [customer report name] INTO [internal table]
to copy the sourse code in internal table.
and then use gui_download
Thank You,
Ganesh