From 939791cd956632334f19ecc471f3ecb771a5f6f2 Mon Sep 17 00:00:00 2001 From: "d.lechner" <d.lechner@adito.de> Date: Fri, 7 Jun 2019 12:49:26 +0200 Subject: [PATCH] Removed "ADITO." from DB-Statements --- .../children/filteredattributes_param/valueProcess.js | 2 +- process/Campaign_lib/process.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/entity/Productprice_entity/entityfields/attributes/children/filteredattributes_param/valueProcess.js b/entity/Productprice_entity/entityfields/attributes/children/filteredattributes_param/valueProcess.js index 4e35cfba9d..8e1a22ffe0 100644 --- a/entity/Productprice_entity/entityfields/attributes/children/filteredattributes_param/valueProcess.js +++ b/entity/Productprice_entity/entityfields/attributes/children/filteredattributes_param/valueProcess.js @@ -1,3 +1,3 @@ import("system.db"); import("system.result"); -result.object(db.array(db.ROW, "select AB_ATTRIBUTEID from ADITO.AB_ATTRIBUTE where ATTRIBUTE_PARENT_ID = 'ab545654-1fce-4993-b763-0ec469781302'")); \ No newline at end of file +result.object(db.array(db.ROW, "select AB_ATTRIBUTEID from AB_ATTRIBUTE where ATTRIBUTE_PARENT_ID = 'ab545654-1fce-4993-b763-0ec469781302'")); \ No newline at end of file diff --git a/process/Campaign_lib/process.js b/process/Campaign_lib/process.js index 73354a0fe4..5dd0033fc0 100644 --- a/process/Campaign_lib/process.js +++ b/process/Campaign_lib/process.js @@ -192,7 +192,7 @@ CampaignUtils.getCampaignStartDate = function(pCapmaignId) { let campaignIdCondition = SqlCondition.begin() .andPrepare("CAMPAIGNSTEP.CAMPAIGN_ID", pCapmaignId); - return db.cell(campaignIdCondition.buildSql("SELECT DATE_START, SORTING FROM ADITO.CAMPAIGNSTEP", "1=2", "order by SORTING ASC")); + return db.cell(campaignIdCondition.buildSql("SELECT DATE_START, SORTING FROM CAMPAIGNSTEP", "1=2", "order by SORTING ASC")); } /** -- GitLab