天天看点

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

Created by Jerry Wang, last modified on Mar 04, 2014

The real problem could be reproduced by following the four steps below:

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

After clicking back button we return to product overview page, and then click the save button there, we could see the dump in UI and also in ST22:

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

Here below is the steps to analyze the root cause.

From the callstack we could observe there is a nested PERFORM XXX ON COMMIT, as is also mentioned in ST22:

In callstack 19 the application trigger a COMMIT WORK AND WAIT which is executed in stack 22.

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

And in callstack 53, there is a nested PERFORM XXX ON COMMIT again:

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

So the dump is made deliberately. However this issue could not be reproduced in another system. By debugging the different handling has been found in method below:

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

The logic is: if the parameter CRM_CM_COMMIT is not set as X, the save mode will be the “direct update mode”, or else the save will only be triggered in commit mode, as explained in comment between line 15 and line 16.

We can first find the value of function profile PARAMETERS is TPM_PROF,

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

Then set its value as space. After that the dump is gone.

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

in SPRO there are more detail description about this parameter:

How to analyze the dump MESSAGE_TYPE_X when modifying an attachment

继续阅读