fix BUG ID 1618570 -> ORA-00936 in Project window, bad definition of where clause, it has wrongly AND AND

This commit is contained in:
Carlos Ruiz 2006-12-19 07:16:02 +00:00
parent a68462e191
commit 815f197a3e
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- globalqss: bug [ 1618570 ] ORA-00936 in Project window
-- wrong value in AD_Tab.WhereClause -> old value
-->> C_ProjectPhase_ID > 0 AND AND COALESCE(C_ProjectTask_ID,0)=0
UPDATE ad_tab
SET whereclause =
'C_ProjectPhase_ID > 0 AND COALESCE(C_ProjectTask_ID,0)=0'
WHERE ad_tab_id = 799;
COMMIT;