2005 Dec 07 11:33 AM
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
2005 Dec 07 11:35 AM
Hi,
use this report : <a href="http://xaption.mjumedia.de/downloads/developer/index.php?language=en&Xaption=567aa0d985c2d8734c4444f2a24b0bce">ZREPTRAN</a>
Andreas
2005 Dec 07 1:37 PM
2006 Jan 31 8:21 AM
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
2005 Dec 07 11:38 AM
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.
2005 Dec 07 12:32 PM
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