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: 

Download/Upload More then one Source code at once?????

Former Member
0 Kudos
213

Dear all,

I want to download source code and screen layouts in range at once not one by one using the upload download utility

Wise a versa I also want to upload them at once. Is there any standard program present if not then how is it possible

Thanks in Advance

Sachin Gautam

5 REPLIES 5

andreas_mann3
Active Contributor
0 Kudos
134

Hi,

use this report : <a href="http://xaption.mjumedia.de/downloads/developer/index.php?language=en&Xaption=567aa0d985c2d8734c4444f2a24b0bce">ZREPTRAN</a>

Andreas

0 Kudos
134

Hi,

so use standard abap RSWBO010

regards

Andreas

0 Kudos
134

Hi Andreas,

in the past I saw that you give the advise to use the report ZREPTRAN to download reports. In know that report very well and I use it very often.

However, the link that you use to download the report gives you a ZREPTRAN_620-report which destroys the entries in the table TRDIR !!!! I investigated and found the following error:

&----


*& Form download_trdir

&----


  • text

----


FORM download_trdir TABLES source.

CONCATENATE pfad reports suffix '_trdir.txt' INTO filename.

CALL FUNCTION 'GUI_DOWNLOAD'

EXPORTING

filename = filename

filetype = 'ASC'

write_field_separator = 'X'

TABLES

data_tab = source

EXCEPTIONS

OTHERS = 8.

ENDFORM. " download_trdir

&----


*& Form upload_trdir

&----


  • text

----


FORM upload_trdir TABLES source.

CONCATENATE pfad reports suffix '_trdir.txt' INTO filename.

CALL FUNCTION 'GUI_UPLOAD'

EXPORTING

filename = filename

filetype = 'ASC'

  • write_field_separator = 'X'

TABLES

data_tab = source

EXCEPTIONS

OTHERS = 8.

ENDFORM. " download_trdir

The download uses field-separators and the upload doesn't.

The resulting file doesn't match while uploading.

For a solution set the write_field_separator in the download to comment.

Greetings

Axel

Former Member
0 Kudos
134

Hi sachin,

U can make use of the LSMW for doing this situation.

check on to this link for referals:

http://help.sap.com/saphelp_erp2005/helpdata/en/ad/2d54a41d7011d2b42e006094b944c8/frameset.htm

Hope this helps u,

Regards,

Nagarajan.

0 Kudos
134

Thanks

Andreas and Nagarajan.

ZREPTRAN is not working and i want to download reports as well as layout at once not the lsmw project.

problem still remain same

Sachin Gautam