diff --git a/migration/352a-trunk/327_BF2319604.sql b/migration/352a-trunk/327_BF2319604.sql new file mode 100644 index 0000000000..a61b3a8212 --- /dev/null +++ b/migration/352a-trunk/327_BF2319604.sql @@ -0,0 +1,4 @@ +-- Nov 21, 2008 12:14:31 PM SGT +-- [ 2319604 ] Wrong SQL where clause in Inbound Asset Entry window +UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type = ''New''',Updated=TO_DATE('2008-11-21 12:14:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53166 +; diff --git a/migration/352a-trunk/328_BF2319302.sql b/migration/352a-trunk/328_BF2319302.sql new file mode 100644 index 0000000000..ec14e36dc6 --- /dev/null +++ b/migration/352a-trunk/328_BF2319302.sql @@ -0,0 +1,9 @@ +-- Nov 21, 2008 2:17:03 PM MYT +-- [ 2319302 ] Can't create new asset +UPDATE AD_Column SET DefaultValue='N',Updated=TO_DATE('2008-11-21 14:17:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8061 +; + +-- Nov 21, 2008 2:17:10 PM MYT +-- [ 2319302 ] Can't create new asset +ALTER TABLE A_Asset MODIFY Processing CHAR(1) DEFAULT 'N' +; diff --git a/migration/352a-trunk/postgresql/327_BF2319604.sql b/migration/352a-trunk/postgresql/327_BF2319604.sql new file mode 100644 index 0000000000..67f0bf17fa --- /dev/null +++ b/migration/352a-trunk/postgresql/327_BF2319604.sql @@ -0,0 +1,4 @@ +-- Nov 21, 2008 12:14:32 PM SGT +-- [ 2319604 ] Wrong SQL where clause in Inbound Asset Entry window +UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type = ''New''',Updated=TO_TIMESTAMP('2008-11-21 12:14:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53166 +; diff --git a/migration/352a-trunk/postgresql/328_BF2319302.sql b/migration/352a-trunk/postgresql/328_BF2319302.sql new file mode 100644 index 0000000000..386bc4e2ee --- /dev/null +++ b/migration/352a-trunk/postgresql/328_BF2319302.sql @@ -0,0 +1,9 @@ +-- Nov 21, 2008 2:17:03 PM MYT +-- [ 2319302 ] Can't create new asset +UPDATE AD_Column SET DefaultValue='N',Updated=TO_TIMESTAMP('2008-11-21 14:17:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8061 +; + +-- Nov 21, 2008 2:17:10 PM MYT +-- [ 2319302 ] Can't create new assets +insert into t_alter_column values('a_asset','Processing','CHAR(1)',null,'N') +;