cancel
Showing results for 
Search instead for 
Did you mean: 

RCPTRAN4 not see change

Former Member
0 Kudos

Hello Expert,

I want send master changes data from MM to SNC.

For this, i used RCPTRAN4 report with supplier option checked. But the system don't see the changes.

In debug, the program do a query on CIF_IMOD table with : modelname = "$CPMODEL" (global constant : GC_CPMODEL_NAME) and imptyp = "T_VEN"

     

SELECT * FROM CIF_IMOD BYPASSING BUFFER
             INTO TABLE LT_DELTA_IMOD
             WHERE MODELNAME = GC_CPMODEL_NAME
               AND LOGSYS    = IT_LOGSYS-LOGSYS
               AND APOAPP    EQ SPACE
               AND IMTYP     IN LT_IMTYP_SEL.

But i haven't modelname with this name.

Please have you an idea about this issue ? Can you help me to run this report ?

Thanks for your help,

Regards,

Stéphane.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Stéphane,

There are two ways to send change of master data:

1) Activate the change pointer by using tcode CFC9 which will send changes immediately.

2) transaction code:CFP1/ report RCPTRAN4 will be useful for periodic transfer.

Regards,

Nikhil

ulf_bethke
Explorer
0 Kudos

Hi,

have you switched on change management in CFC9? Without this no change pointers are created.

Also don't worry about the $CPMODEL. This is an integration model used by SAP internally. It is used when you have several integration models going maybe to several systems.

After the select with $CPMODEL it should later do one with your integration model.

Cheers, Ulf.