Bài đăng

Đang hiển thị bài đăng từ Tháng 1, 2020

IBM BPM - Error Report the following identifier to your administrator for further investigation

Hình ảnh
I. Lỗi gặp phải Error: Report the following identifier to your administrator for further investigation: {5bd5e90a-d33e-4922-97c9-07be1b4ee420}. II. Fix Lỗi này xảy ra khi trên màn hình UI Client Side Human Service có output variable không tồn tại trên server (hoặc 1 trường trong object không có trong business object). Nếu xử lý chỉ ở client mà ko đẩy lên server sẽ không gặp lỗi. tw.local.bomOutput = {}; tw.local.bomOutput.name = "BPM"; // Error vì thuộc tính name không có trong object nên khi đẩy lên server sẽ lỗi (nếu xử lý chỉ ở client mà ko đẩy lên server sẽ không sao) Trước khi đẩy lên server ta phải xóa property thừa trong object đi. delete tw.local.bomOutput.name;