cancel
Showing results for 
Search instead for 
Did you mean: 

Transferring ORg Data From ECC to CRM

Former Member
0 Kudos

Hi,

An ORg structure was maintianed manually in our CRM system. Without deleting the strucutre we tried to generate the ORg strucutre from ECC using the program CRMC_R3_ORG_GENERATE .

Now it created problems and our products and business partners are not picking up the Sales Org Data.

When we tried to regenerate the org using CRMC_R3_ORG_GENERATE a dump error is observed.

We tried deleting the org strucutre using report rhrhdl00 but it didnt worked.

Can you guys help us in bringing the Sales Org Data from the ECC

Accepted Solutions (0)

Answers (2)

Answers (2)

gerhard_djuracek
Contributor
0 Kudos

Hello Vijay,

you can delete the complete org structure in order to copy it again

from the R/3. For that please use report RHRHDL00 to completely

delete all org units.

Enter "O" for object type and the number of your root org unit as ID.

Enter "ORGEH" as evaluation path and execute the program (you can first

check what will happen by leaving the "test" flag set). Kindly refer

to the documentation attached to this report in trx. SE38. You should

repeat this for all other root org units.

Unfortunately this report does not delete the corresponding Business

partners created in role Organisational unit, but they can be deleted

by means of trx. BUPA_DEL.

With report RHCHECKRELATIONS you might delete evetualy remained

relations for these objects.

Before reprocess report CRMC_R3_ORG_GENERATE you need to

refresh the buffer(before note 696229, generated records were

considered as already saved in PPOMA_CRM).

For example this report could be :

*********************************************

REPORT CRM_ORGMAN_R3_ORGDATA_DEL_GEN.

DATA: lv_answer TYPE char1.

START-OF-SELECTION.

  • popup to confirm

CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'

EXPORTING

defaultoption = 'N'

titel = text-001

textline1 = text-002

IMPORTING

answer = lv_answer.

IF lv_answer = 'J'.

  • refresh buffer

DELETE FROM DATABASE indx(st) ID 'KEY'.

ENDIF.

********************************************

Execute this report and then CRM org data could be created via

trnasaction CRMC_R3_ORG_GENERATE

Regards, Gerhard

kapilpatil
Active Contributor
0 Kudos

Hi Jijay,

Please follow the best practice Building Block C01 for organizational data set up.

Regards,

Kapil Patil