From 3df36ec2ed8184705b855f5ec774dacbfc94c32f Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 16 Oct 2013 17:48:40 -0500 Subject: [PATCH] IDEMPIERE-1408 User window must not show System users --- .../oracle/201309302139_IDEMPIERE-1408.sql | 11 +++++++++++ .../postgresql/201309302139_IDEMPIERE-1408.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201309302139_IDEMPIERE-1408.sql create mode 100644 migration/i1.0c-release/postgresql/201309302139_IDEMPIERE-1408.sql diff --git a/migration/i1.0c-release/oracle/201309302139_IDEMPIERE-1408.sql b/migration/i1.0c-release/oracle/201309302139_IDEMPIERE-1408.sql new file mode 100644 index 0000000000..341a58571b --- /dev/null +++ b/migration/i1.0c-release/oracle/201309302139_IDEMPIERE-1408.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Sep 30, 2013 9:38:50 PM COT +-- IDEMPIERE-1408 User window must not show System users +UPDATE AD_Tab SET WhereClause='(AD_User.AD_Client_ID=@#AD_Client_ID@)',Updated=TO_DATE('2013-09-30 21:38:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=118 +; + +SELECT register_migration_script('201309302139_IDEMPIERE-1408.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201309302139_IDEMPIERE-1408.sql b/migration/i1.0c-release/postgresql/201309302139_IDEMPIERE-1408.sql new file mode 100644 index 0000000000..a616f5ffdb --- /dev/null +++ b/migration/i1.0c-release/postgresql/201309302139_IDEMPIERE-1408.sql @@ -0,0 +1,8 @@ +-- Sep 30, 2013 9:38:50 PM COT +-- IDEMPIERE-1408 User window must not show System users +UPDATE AD_Tab SET WhereClause='(AD_User.AD_Client_ID=@#AD_Client_ID@)',Updated=TO_TIMESTAMP('2013-09-30 21:38:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=118 +; + +SELECT register_migration_script('201309302139_IDEMPIERE-1408.sql') FROM dual +; +