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

Storing in presentation server

Former Member
0 Likes
568

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

4 REPLIES 4
Read only

Former Member
0 Likes
531

Hi,

Use this report RPR_ABAP_SOURCE_SCAN to scan the string used in the programs.

Read only

Former Member
0 Likes
531

CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD

Function Module :

WS_DOWNLOAD

DOWNLOAD

Edited by: Swastik Bharati on May 28, 2009 1:46 PM

Read only

Former Member
0 Likes
531

there are too many FMs to download to presentation server,...

ex: cl_gui_frontend_services->GUI_DOWNLOAD

and many many more..

Read only

Former Member
0 Likes
531

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