cancel
Showing results for 
Search instead for 
Did you mean: 

MEREP_MIG - Not Working

Former Member
0 Kudos

Hi All,

I am trying to use MEREP_MIG - Upload from File Option.

But when I select the file (SyncBO definition file for MAU 3.0), nothing happens. Nothing

When I simulate the Same thing, it shows an empty Screen with No of SyncBOs - 0.

The Same thing is happening with the 'Download to File' Option, when I try to download the existing SyncBOs to a txt file, nothing happens.

Any idea why this might be happening?

Accepted Solutions (1)

Accepted Solutions (1)

AjithC
Employee
Employee
0 Kudos

Hi Ankur,

Are you using a 7.1 system. The transaction is for older mobile versions 7.0 or earlier. For newer release, import the syncBO defenitions via DOE workbench (tcode: sdoe_wb)

Regards

Ajith Chandran

Former Member
0 Kudos

I am using a 7.0 System. And I have no idea what can be causing the problem.

Is there any logs or anything which might help me in knowin as to what is happening.

Ankur

AjithC
Employee
Employee
0 Kudos

Hi Ankur,

To download SYNC BOs to file, you have to generate them first.

Try selecting only one SyncBO and test.

Are you getting the following pop ups..

1. Pop up to setting RFC desitnation (check all the syncBOs are in the list)

2. Pop up to save the file..

Regards

Ajith

Former Member
0 Kudos

The SyncBOs were already generated. Still I generated one of them again. And enabled it.

Then I tried to download the same SyncBO using Merep_Mig, Both the Pop Ups appear but the file is not saved

Ankur

AjithC
Employee
Employee
0 Kudos

Hi Ankur,

Sounds wired. Check if you have sufficient rights to create files in the location you are trying to save the file. Try "C:\" rather than "my documents" or "desktop".

Also did you get a confirmation screen which shows the details of the tables & number of record exported to the file??

Regards

Ajith

Former Member
0 Kudos

I have the sufficient rights. I tried in the locations you suggested. No Luck.

And I am not getting the confirmation screen!!

Ankur

AjithC
Employee
Employee
0 Kudos

It should be some problem with the file download.

Now some crude ways to find the problem. Lets Debug!!!

Put a break point in the program "MEREP_MIGRATION" (Tcode SE38) at the line

check rc_subrc is initial.

(line nubmer should be 808, not sure since my system is of different version.)

check the return value rc_subrc and post it back..

Regards

Ajith

Former Member
0 Kudos

Its 5.

AjithC
Employee
Employee
0 Kudos

The same as I expected. You don't have authority to write the file. Check the permissions on the system..

This error code is returned by the GUI Download API...

CALL METHOD cl_gui_frontend_services=>gui_download

EXPORTING

filename = ldf_fullpath

filetype = 'ASC'

CHANGING

data_tab = gdt_outtab

EXCEPTIONS

file_write_error = 1

no_batch = 2

gui_refuse_filetransfer = 3

invalid_type = 4

no_authority = 5

unknown_error = 6

header_not_allowed = 7

separator_not_allowed = 8

filesize_not_allowed = 9

header_too_long = 10

dp_error_create = 11

dp_error_send = 12

dp_error_write = 13

unknown_dp_error = 14

access_denied = 15

dp_out_of_memory = 16

disk_full = 17

dp_timeout = 18

file_not_found = 19

dataprovider_exception = 20

control_flush_error = 21

not_supported_by_gui = 22

error_no_gui = 23

OTHERS = 24.

Regards

Ajith Chandran

Former Member
0 Kudos

You nailed it...

Thanks a lot

Answers (0)