Skip to Content
Author's profile photo Jerry Wang

why there are always multiple read operations after BATCH operation is done successfully

I would like to share with you my story today about fighting with one customer incident.

We can make changes on Appointment and click save button:

/wp-content/uploads/2015/07/clipboard1_754121.png

There is a batch operation observed in Chrome network tab to update appointment as expected. However, why every time there are three subsequent appointment read roundtrips?

/wp-content/uploads/2015/07/clipboard2_754122.png

The callstack clearly shows that the three roundtrips are NOT issued by customer extension, or else the customer js file could be observed in the callstack.

/wp-content/uploads/2015/07/clipboard3_754123.png

Set a breakpoint on the top most callstack, h function. Check the content of e.target.data:

/wp-content/uploads/2015/07/clipboard4_754124.png

This is actually the batch request payload which could be observed in Chrome network tab:

/wp-content/uploads/2015/07/clipboard5_754125.png

This finding gives me more confidence that these roundtrips are issued by framework, not standard or customer application code.

So I just continue debugging until I reach this suspicious stack:

/wp-content/uploads/2015/07/clipboard6_754126.png

in line 1957, this.bRefreshAfterChange = true.

/wp-content/uploads/2015/07/clipboard7_754127.png

However, in our internal system ( where everything works fine, there is no duplicate read operations ), this.bRefreshAfterChange = false, which has suppressed the refresh operation. This is the reason why the read operation could not be found in my internal system, since they are not executed at all. But in customer system, _isRefreshNeeded returns true, which leads to the execution of all subsequent read operations.

/wp-content/uploads/2015/07/clipboard8_754128.png

So why is this difference between two systems? In Chrome development tool, search the boolean variable name and we found one function setRefreshAfterChange defined for ODataModel. Just set a breakpoint in this method and re-launch the application in my internal system from beginning:

/wp-content/uploads/2015/07/clipboard9_754129.png

Breakpoint is triggered:

/wp-content/uploads/2015/07/clipboard10_754130.png

However, this line in customer system is missing, which is the root cause – our latest standard code didn’t reach customer system.

After I found the root cause, I search in SCN to check whether there are other poor guy which had encountered the same issue with me, and actually I found one: http://scn.sap.com/thread/3724174 🙂 If I read this thread several months earlier, I would save my hours’ debugging today.

/wp-content/uploads/2015/07/clipboard11_754131.png

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Murali Shanmugham
      Murali Shanmugham

      Thanks Jerry. Which version of software fixes this issue.

      Author's profile photo Jerry Wang
      Jerry Wang
      Blog Post Author

      Hello Murali,

      the issue is fixed in note 2156035.

      Best regards,

      Jerry