From 763b81bfe063635ca8f2e78b765967944075e90d Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 4 Jan 2020 17:45:48 +0100 Subject: [PATCH] IDEMPIERE-1486 Form to captured process parameter for scheduler Enable the usage of the button for non-system --- .../i7.1/oracle/202001041702_IDEMPIERE-1486.sql | 15 +++++++++++++++ .../postgresql/202001041702_IDEMPIERE-1486.sql | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql create mode 100644 migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql diff --git a/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql b/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql new file mode 100644 index 0000000000..4163473551 --- /dev/null +++ b/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2924 Export to XLS limited to 65536 +-- Jan 4, 2020, 4:51:45 PM CET +UPDATE AD_Form SET AccessLevel='7',Updated=TO_DATE('2020-01-04 16:51:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=200008 +; + +-- Jan 4, 2020, 4:51:52 PM CET +UPDATE AD_Process SET AccessLevel='7',Updated=TO_DATE('2020-01-04 16:51:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200064 +; + +SELECT register_migration_script('202001041702_IDEMPIERE-1486.sql') FROM dual +; + diff --git a/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql b/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql new file mode 100644 index 0000000000..1a52d34b60 --- /dev/null +++ b/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql @@ -0,0 +1,12 @@ +-- IDEMPIERE-2924 Export to XLS limited to 65536 +-- Jan 4, 2020, 4:51:45 PM CET +UPDATE AD_Form SET AccessLevel='7',Updated=TO_TIMESTAMP('2020-01-04 16:51:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=200008 +; + +-- Jan 4, 2020, 4:51:52 PM CET +UPDATE AD_Process SET AccessLevel='7',Updated=TO_TIMESTAMP('2020-01-04 16:51:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200064 +; + +SELECT register_migration_script('202001041702_IDEMPIERE-1486.sql') FROM dual +; +