‎2008 Jan 31 9:46 AM
Hi All,
I am using a FM module to delete a record. I am getting an error message : "At least one entry could not be found in object buffer".Can anybody tell why this error occuring? Or Is there any way to quickly found our where the error is occuring through debugging?
Regards,
Jeetu
‎2008 Jan 31 9:55 AM
put the break point in debug mode on the statement "MESSAGE". u will find where the error is occuring...
ps: system will stop on many message statements...but they will be bypassed.
Thanks,
Gautam
‎2008 Jan 31 9:55 AM
If buffering is allowed for a table in the ABAP Dictionary, the SELECT statement always reads the data from the buffer in the database interface of the current application server. To read data directly from the database table instead of from the buffer, use the following:
SELECT... FROM *lt;tables> BYPASSING BUFFER
If it is a PCUI application;
Start using the transaction code: crm_bsp_state_erase, and it will work.
‎2008 Jan 31 10:13 AM
Hi Anoop,
The function module is CRM_ORDER_DELETE. What should I do in this case i.e I can not write any code.
‎2008 Jan 31 9:55 AM
put the break point in debug mode on the statement "MESSAGE". u will find where the error is occuring...
ps: system will stop on many message statements...but they will be bypassed.
Thanks,
Gautam