IDEMPIERE-509 Problem in create new record in the window Production / Thanks to Tony Snook for suggested solution

This commit is contained in:
Carlos Ruiz 2012-11-26 13:58:24 -05:00
parent f13092548f
commit 51525163ee
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- Nov 26, 2012 1:55:57 PM COT
-- IDEMPIERE-509 Problem in create new record in the window Production
UPDATE AD_Menu SET IsActive='N',Updated=TO_DATE('2012-11-26 13:55:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=228
;
-- Nov 26, 2012 1:56:13 PM COT
-- IDEMPIERE-509 Problem in create new record in the window Production
UPDATE AD_Window SET IsActive='N',Updated=TO_DATE('2012-11-26 13:56:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=191
;
SELECT register_migration_script('201211261356_IDEMPIERE-509.sql') FROM dual
;

View File

@ -0,0 +1,13 @@
-- Nov 26, 2012 1:55:57 PM COT
-- IDEMPIERE-509 Problem in create new record in the window Production
UPDATE AD_Menu SET IsActive='N',Updated=TO_TIMESTAMP('2012-11-26 13:55:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=228
;
-- Nov 26, 2012 1:56:13 PM COT
-- IDEMPIERE-509 Problem in create new record in the window Production
UPDATE AD_Window SET IsActive='N',Updated=TO_TIMESTAMP('2012-11-26 13:56:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=191
;
SELECT register_migration_script('201211261356_IDEMPIERE-509.sql') FROM dual
;