cancel
Showing results for 
Search instead for 
Did you mean: 

CRM_ORDER_READ

Former Member
0 Kudos

Hi All ,

i have to read one CRM transaction by CRM_ORDER_READ for a field is it there any way to find the name of <b>table type(internal table)</b> where the value of this particular field will be stored? or

How name of the internal table can be found which contains the name of a corresponding field which is required to read in?

Thanx and regards

Sajid

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sajid,

If you know the data element of the field, then you can use where used list to find which table uses it.

Then see whether ur CRM_ORDER_READ imports/exports this table type.

Regards,

Tanveer.

<b>Please mark helpful answers</b>

Answers (2)

Answers (2)

Former Member
0 Kudos

hi sajid,

calling this module returns the value of partner values timestamp etc.

debug ur program and when u pass th values u r passing the value in structure starting with LS.

Let me know if any more information is requiered.

Reward point if help

anu

former_member927251
Active Contributor
0 Kudos

Hi Sajid,

If you want to know the database tables for the internal tables returned by CRM_ORDER_READ then refer the following:

ET_ORDERADM_H <=> CRMD_ORDERADM_H

ET_ORDERADM_I <=> CRMD_ORDERADM_I

ET_LEAD_H <=> CRMD_LEAD_H

ET_LEAD_I <=> CRMD_LEAD_I

ET_ACTIVITY_H <=> CRMD_ACTIVITY_H

ET_ACTIVITY_I <=> CRMD_ACTIVITY_I

ET_CUSTOMER_H <=> CRMD_CUSTOMER_H

ET_CUSTOMER_I <=> CRMD_CUSTOMER_I

ET_APPOINTMENT <=> SCAPPT

You can find the rest of the tables corresponding to the internal tables in the same way.

If you want to get some specific fields then ask specifically for that.

<b>Reward points if it helps.</b>

Former Member
0 Kudos

Hi Amit,

when I call the function CRM_ORDER_READ, the internal table ET_PRODUCT_I contains the field BP_PARTNER_GUID (component type: BU_PARTNER_GUID).

In which database table can I get this field with the same component type? I looked into the table CRMD_PARTNER (field PARTNER_NO) but the component type is different (CRMT_PARTNER_NO).

Thank you in advance, best regards.

Lorenzo