cancel
Showing results for 
Search instead for 
Did you mean: 

CRM - how to read product detail

Former Member
0 Kudos

Hi Guru,

I need to read product detail from a source CRM system and I need to create the same product with all details to another CRM installation.

I have to do it through a report. Do you have code example or some suggestion?

It's urgent...

Thanks in advance

Marco

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

you can get the product details from FM : COM_PRODUCT_GETDETAIL_INTERNAL or COM_PRODUCT_COPY.

This will give you whole product details.

Former Member
0 Kudos

Hi Naresh,

and what can I use to create the product in destination system?

Thanks in advance

Marco

Former Member
0 Kudos

Vishal,

I need to read product defined in transaction COMMPR01 from a CRM system and I need to replicate it to another CRM system.

It is only master data replication.

Do you have any information?

Marco

former_member193352
Active Contributor
0 Kudos

Dear Marco,

In order to achieve this requirement, you can use std FM - COM_PRWB_COPY_CREATE. You can debug the std copy feature and see how this FM fills value. In one of the importing paremeters in IS_PRODUCT, you need to fill value of Logical system (of another CRM system in your case) where this product needs to be created.

Hope this helps.

Thanks

Vishal

Answers (1)

Answers (1)

former_member193352
Active Contributor
0 Kudos

Dear Marco,

Please elaborate on your question a little bit more. From where do you want to read the product detail? Is is at the transaction level? If Yes, you can use the std FM CRM_ORDER_READ, pass the the transaction guid as importing parameter and you can read product detail in exporting table ET_SERVICE_OS. Later, in order to append the product to a transaction in another CRM system, you can use CRM_ORDER_MAINTAIN and prefill ET_SERVICE_OS in order to write product data to the transaction.

Thanks

Vishal

Edited by: Vishal Kesar on Aug 3, 2011 9:06 AM