понедельник, 24 июня 2013 г.

SAP BO 4 - Incomplete Operation Detected


During SAP BO Patch Installation I lost connection to server, and next ti,e when i am trying to   instal new patch, i got error:
"Incomplete Operation Detected" and two options: 
1>Finish
2>Continue
But no one doesn't work:(

Unfortunately SAP Support didn't know how to fix this bug, and suggest me to delete production system and install again! In this time i am very disappointed SAP Support;)


And I found Solution:

SAP BO Installation folder hold folder "InstalData" where we can find sqlite db InstallManifest.sqlite

One of tables holds incorrect data after last terminated installation process - DUTransaction


pk = 5 and committed = 0

We have to update this to "1", that's it.

Solution (Linux):
#cd <…>\InstallData\
#sqllite3 InstallManifest.sqlite 
#sqllite3>UPDATE dutransaction SET committed=1 WHERE pk=5;

Relaunch setup.sh