Hi all,
We have developed a custom planning function for a very specific customer process.
The idea is to distribute cost among certain concepts and criteria. So the user runs a query which displays all the costs and then calls the class which process the information and distributes it among this concepts.
The problem is that we can never reach the Execute method, since the execution enters some sort of loop from which it never comes out until timeout.
Programa: SAPLRRK0
Include: LRRK0F04
Form: S_DATA_FUELLEN_PD
LOOP AT <l_ts_s> INTO <l_s_s>. ---> Sorted Table[1946468x2(116)]
Class: CL_RSR_FIPT
Method: EXECUTE
LOOP AT c_ta_data ASSIGNING <l_s_data>. ---> Standard Table[983144x29(276)]
Class: CL_RSPLFR_CONTROLLER
Method: READ_DATA_FROM_BUFFER
LOOP AT <lt_sid_data> INTO <ls_sid_data>. ---> Standard Table[983144x29(276)]
Any ideas on how can this be solved ?
Regards,
Santiago