A lot of "Process Management Change Case did not receive an ID" log appearing ...

Hi there,

We are faceing a lot of this message in our instance, did anyone get this message too ? 

Process Management Change Case did not receive an ID

What could be the reason ?

Many thanks in advance,

Best regards

Enes

Parents Reply Children
  • Hi Enes,

    To mass delete at a scale like this, I instead create a temp table like the original, move to the temp all the rows I wish to keep, and then swap them out.

    CREATE TABLE pmse_bpm_flow_cleaned LIKE pmse_bpm_flow; INSERT INTO pmse_bpm_flow_cleaned SELECT * FROM pmse_bpm_flow WHERE pmse_bpm_flow.cas_id IS NOT NULL;

    RENAME TABLE pmse_bpm_flow TO pmse_bpm_flow_backup, pmse_bpm_flow_cleaned TO pmse_bpm_flow;

    I also strongly recommend assessing that top process definition for a more pragmatic approach to what it is doing for you and when it does it because it looks like it runs a remarkable amount.

    Regards,
    Patrick McQueen
    Director, SugarCRM Support