CRM and CX Blogs by SAP
Stay up-to-date on the latest developments and product news about intelligent customer experience and CRM technologies through blog posts from SAP experts.
cancel
Showing results for 
Search instead for 
Did you mean: 
JerryWang
Advisor
Advisor
0 Kudos
We know settype table COMM_PRMAT is used to store attribute data modelled in product settype COMM_PR_MAT. In this table, there is one field FRG_GUID.

I would like to figure out how this field is used in ABAP code when this table is accessed.

How to find the ABAP code where this table is read with FRG_GUID in a most efficient way?

Approach1:

Write a utility method to read sales data via function module CRM_PRODUCT_SALES_READ_API:

Write a simple report to consume this method:

Use tcode SAT, click execute button:

Once done, expand trace data:


Click DB tables, all accessed database tables are listed in this tab. Choose "Position in the Hit List Tool" from context menu:

Double click statement:


Then it automatically navigates to the code position where this table is accessed.

Set a breakpoint:

Then confirm it in the runtime via debugging. Now we can also know the reason why this code place could not be found in where used list on table COMM_PRMAT : it is accessed dynamically via SELECT SINGLE * FROM (gc_set_table).


Approach2: run the report under ST05, and click button highlighted below, it can bring you to code where this table is accessed as well.