From fd647247bac76b8f12ec61feb5519c11f02ec2d9 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 4 Dec 2024 23:29:17 +0100 Subject: [PATCH] IDEMPIERE-6334 Non Advanced Role cannot open Chart window (#2582) --- migration/iD11/oracle/202412041755_IDEMPIERE-6334.sql | 10 ++++++++++ .../iD11/postgresql/202412041755_IDEMPIERE-6334.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/iD11/oracle/202412041755_IDEMPIERE-6334.sql create mode 100644 migration/iD11/postgresql/202412041755_IDEMPIERE-6334.sql diff --git a/migration/iD11/oracle/202412041755_IDEMPIERE-6334.sql b/migration/iD11/oracle/202412041755_IDEMPIERE-6334.sql new file mode 100644 index 0000000000..679a90a59e --- /dev/null +++ b/migration/iD11/oracle/202412041755_IDEMPIERE-6334.sql @@ -0,0 +1,10 @@ +-- +SELECT register_migration_script('202412041755_IDEMPIERE-6334.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Dec 4, 2024, 5:55:11 PM CET +UPDATE AD_Tab SET IsAdvancedTab='Y',Updated=TO_TIMESTAMP('2024-12-04 17:55:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=200329 +; + diff --git a/migration/iD11/postgresql/202412041755_IDEMPIERE-6334.sql b/migration/iD11/postgresql/202412041755_IDEMPIERE-6334.sql new file mode 100644 index 0000000000..73d98efa10 --- /dev/null +++ b/migration/iD11/postgresql/202412041755_IDEMPIERE-6334.sql @@ -0,0 +1,7 @@ +-- +SELECT register_migration_script('202412041755_IDEMPIERE-6334.sql') FROM dual; + +-- Dec 4, 2024, 5:55:11 PM CET +UPDATE AD_Tab SET IsAdvancedTab='Y',Updated=TO_TIMESTAMP('2024-12-04 17:55:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=200329 +; +