cancel
Showing results for 
Search instead for 
Did you mean: 

Find out the All Tables in this Program : CRM_ORDER_READ

Former Member
0 Kudos

Hi Everyone,

I have a CRM Standard Program; this is the main pgm for TOTAL CRM: CRM_ORDER_READ, Please let me know what are all the tables used in that program, itu2019s a huge program contains so many FMu2019s and Subroutines, so Iu2019m not able find out.

If anybody has the total tables, which are used in this program let me know: CRM_ORDER_READ, pls send me.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

1. CRM_ORDER_READ is a function module which can be used to get the details of any business transaction based on the Header GUID, Item GUID or both.

2. Always pass the IT_REQUESTED_OBJECTS structure to this function module to fetch the required details only.

3. This function module can not be executed directly instead SAP has provided a report CRM_ORDER_READ for the same for testing purpose. We can pass Business Transaction Number (Object ID), Header GUID or Item GUID to this report to get the required details.

Some Exporting Parameters in CRM_ORDER_READ Function Module

Return Structure Name Details Fetched

ET_ORDERADM_H Header Details of a Business Transaction such as OBJECT_ID, PROCESS_TYPE etc.

ET_ORDERADM_I Item Details of a Business Transaction such as PRODUCT, PRODUCT_KIND, HEADER etc.

ET_ACTIVITY_H Header Details of an activity such as PRIORITY, OBJECTIVE, Address Details etc.

ET_ACTIVITY_I Item Details of an activity.

ET_CUSTOMER_H Additional details at Header level

ET_CUSTOMER_I Additional details at Item level

ET_APPOINTMENT All the dates at Header and Item level

ET_PARTNER Partner Details at Header and Item level

ET_STATUS Status of Business Transaction at Header and Item level

ET_BILLING Billing related details for a Business Transaction both at Header and Item (This structure was enhanced in a leading ISU SAP-CRM implementation to include BUAG_ID(Business Agreement) field in a Service Contract

ET_ORDPRP_OBJL_I_D Object List details such as PRODUCT

ET_DOC_FLOW Ref. Details of the previous Business Transaction

GauthamV
Active Contributor
0 Kudos

hi,

u can get all tables used in a program using function module GET_TABLES.

reward points if hlpful.

Former Member
0 Kudos

I would suggest going to transaction ST05, activating the trace and then running CRM_ORDER_READ.

After completion, deactivate the trace, check the log and this will show all the tables being accessed.