Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0023140 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] 00. Application dictionary | major | always | 2013-02-21 12:41 | 2013-03-28 12:02 | |||
Reporter | egoitz | View Status | public | |||||
Assigned To | AugustoMauch | |||||||
Priority | urgent | Resolution | fixed | Fixed in Version | 3.0MP22 | |||
Status | closed | Fix in branch | Fixed in SCM revision | 496a086a1450 | ||||
Projection | none | ETA | none | Target Version | 3.0MP22 | |||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Merge Request Status | ||||||||
Review Assigned To | shankarb | |||||||
OBNetwork customer | OBPS | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Support ticket | 19094 | |||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0023140: The update audit infrastructure process fails when the ad_org table is defined as isfullyaudited | |||||||
Description | The update audit infrastructure process fails when the ad_org table is defined as isfullyaudited. After execute the process with the ad_org defined to be audited, the database locked and the process can not be executed again. | |||||||
Steps To Reproduce | -Activate an instance with the professional sucription -AS system adminsitratro define a template -Go the tables definition window and check the ad_org table as fullyaduited. -Execute the update audit infrastructure process -The process finishes. -Try to execute again. *The process does not work. After the first execution see that there is insert into ad_audit_trail window that does not finish. Also are locks on the database. | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
![]() |
|
![]() |
|
(0057093) jonalegriaesarte (viewer) 2013-03-06 13:06 |
Moved to MP22, because the fix has to be tested in depth |
(0057103) AugustoMauch (administrator) 2013-03-06 16:15 |
The same thing happens when the ad_client table is audited |
(0057316) hgbot (developer) 2013-03-20 06:49 |
Repository: erp/devel/pi Changeset: 347ce63c377b3d3ddb63ce9dff31da0f9076bc1f Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Wed Mar 20 11:18:53 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/347ce63c377b3d3ddb63ce9dff31da0f9076bc1f [^] Fixes Issue 23140 : update audit infrastructure fails with client and org tables With the fix, when update audit infrastructure is executed from application, the client and org tables are excluded. An ant task has been created to run the same process including client and org tables. --- M build.xml M src-db/database/model/postscript-Oracle.sql M src-db/database/model/postscript-PostgreSql.sql M src-db/database/sourcedata/AD_MESSAGE.xml --- |
(0057338) AugustoMauch (administrator) 2013-03-20 17:38 |
Consider the following case: - There are audit triggers defined for ad_org or ad_client - Set the Fully Audited field for both tables to 'N' - Execute the Update Audit Trail Infrastucture process - The triggers will not be deleted but the user will not be informed about that. Two ways to solve this: - First, check if it is possible to delete the triggers of those tables executing the Update Audit Trail Infrastucture process from the ERP. If it is possible, then change that part of the code in the procedure. - If it is not possible, then a message should be shown to the user telling him what happened and advising him to execute the new ant task. |
(0057367) hgbot (developer) 2013-03-21 15:04 |
Repository: erp/devel/pi Changeset: 815746476942eee8a7810bcfaf16b57cc2ef95b3 Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Thu Mar 21 19:32:06 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/815746476942eee8a7810bcfaf16b57cc2ef95b3 [^] Fixes Issue 23140 : Update Audit Trail process error Now the process notifies if it is unable to delete any trigger and does not create locks on database. --- M src-db/database/model/postscript-Oracle.sql M src-db/database/model/postscript-PostgreSql.sql M src-db/database/sourcedata/AD_MESSAGE.xml --- |
(0057450) AugustoMauch (administrator) 2013-03-25 18:10 |
The update.audit.trail.infrastructure ant task does not work in Oracle. SELECT ad_create_audit_triggers(null) from DUAL; should be used instead of SELECT ad_create_audit_triggers(null); More changes might be needed. |
(0057456) hgbot (developer) 2013-03-26 10:42 |
Repository: erp/devel/pi Changeset: affe31812cc059b722cc1540c21b8557d06cacbc Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Tue Mar 26 15:10:46 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/affe31812cc059b722cc1540c21b8557d06cacbc [^] Fixes Issue 0023140 : DB specific ant task for update audit trail process Create seperate sub targets for oracle and postgres method call of ad_create_audit_triggers procedure. Also create condition targets to check whether the instance is an oracle instance or postgres instance. --- M build.xml --- |
(0057459) AugustoMauch (administrator) 2013-03-26 12:30 |
A simpler approach is going to be followed to fix this issue. UpdateAuditTrail.java will be changed so that it does not use DAL to call the ad_create_audit_triggers function |
(0057460) hgbot (developer) 2013-03-26 12:39 |
Repository: erp/devel/pi Changeset: 072180e28880f5ffdbf629f980e17768bd6fd729 Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Tue Mar 26 16:59:04 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/072180e28880f5ffdbf629f980e17768bd6fd729 [^] Related to Issue 23140 : backout changeset affe31812cc0 Backout changeset as issue will be solved using DAL. --- M build.xml --- |
(0057461) hgbot (developer) 2013-03-26 12:39 |
Repository: erp/devel/pi Changeset: 7f04374e01e72ec87ef31bdbe8039e834e193565 Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Tue Mar 26 17:02:30 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/7f04374e01e72ec87ef31bdbe8039e834e193565 [^] Related to Issue 23140 : Backout changeset 815746476942 Backout changeset as issue will be solved using DAL. --- M src-db/database/model/postscript-Oracle.sql M src-db/database/model/postscript-PostgreSql.sql M src-db/database/sourcedata/AD_MESSAGE.xml --- |
(0057462) hgbot (developer) 2013-03-26 12:39 |
Repository: erp/devel/pi Changeset: 53e0162a749a6d279a03870aef3c713334922878 Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com> Date: Tue Mar 26 17:08:05 2013 +0530 URL: http://code.openbravo.com/erp/devel/pi/rev/53e0162a749a6d279a03870aef3c713334922878 [^] Related to Issue 23140 : Backout changeset 347ce63c377b Backout changeset as issue will be solved using DAL. --- M build.xml M src-db/database/model/postscript-Oracle.sql M src-db/database/model/postscript-PostgreSql.sql M src-db/database/sourcedata/AD_MESSAGE.xml --- |
(0057474) hgbot (developer) 2013-03-26 16:46 |
Repository: erp/devel/pi Changeset: 496a086a1450d6f92d9447fd5dce0afc473b653c Author: Augusto Mauch <augusto.mauch <at> openbravo.com> Date: Tue Mar 26 16:44:21 2013 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/496a086a1450d6f92d9447fd5dce0afc473b653c [^] Fixes issue 23140: Uses xsql instead of DAL to update audit trail triggers When the user update the audit trail triggers from the ERP, the database procedure is called from UpdateAuditTrail.java. It used to do it using the CallProcess class, but that resulted in database locks if the triggers of AD_CLIENT or AD_ORG were updated. This has been fixed by using a xsql function instead of DAL, and retrieving the connection from bundle.getConnection() instead of from OBDal.getInstance().getConnection(). --- M src/org/openbravo/erpCommon/ad_process/UpdateAuditTrail.java A src/org/openbravo/erpCommon/ad_process/UpdateAuditTrail_data.xsql --- |
(0057518) hudsonbot (viewer) 2013-03-28 01:39 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/6c4c5ed08030 [^] Maturity status: Test |
(0057520) hudsonbot (viewer) 2013-03-28 01:39 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/6c4c5ed08030 [^] Maturity status: Test |
(0057521) hudsonbot (viewer) 2013-03-28 01:39 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/6c4c5ed08030 [^] Maturity status: Test |
(0057522) hudsonbot (viewer) 2013-03-28 01:39 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/6c4c5ed08030 [^] Maturity status: Test |
(0057523) hudsonbot (viewer) 2013-03-28 01:39 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/6c4c5ed08030 [^] Maturity status: Test |
(0057533) shankarb (viewer) 2013-03-28 12:02 |
Code reviewed and tested in pi changeset dcf503f0d385 |
![]() |
|||
Date Modified | Username | Field | Change |
2013-02-21 12:41 | egoitz | New Issue | |
2013-02-21 12:41 | egoitz | Assigned To | => AugustoMauch |
2013-02-21 12:41 | egoitz | Modules | => Core |
2013-02-21 12:41 | egoitz | OBNetwork customer | => No |
2013-02-21 12:41 | egoitz | Support ticket | => 19094 |
2013-02-21 12:41 | egoitz | Resolution time | => 1362524400 |
2013-02-21 12:41 | egoitz | Triggers an Emergency Pack | => No |
2013-02-21 13:34 | egoitz | OBNetwork customer | No => Yes |
2013-02-25 05:51 | shankarb | Assigned To | AugustoMauch => shankarb |
2013-02-25 11:39 | shankarb | Assigned To | shankarb => AugustoMauch |
2013-03-06 13:06 | jonalegriaesarte | Note Added: 0057093 | |
2013-03-06 13:06 | jonalegriaesarte | Target Version | 3.0MP21 => 3.0MP22 |
2013-03-06 16:15 | AugustoMauch | Note Added: 0057103 | |
2013-03-20 06:35 | shankarb | Assigned To | AugustoMauch => shankarb |
2013-03-20 06:36 | shankarb | Status | new => scheduled |
2013-03-20 06:36 | shankarb | fix_in_branch | => pi |
2013-03-20 06:41 | shankarb | Review Assigned To | => AugustoMauch |
2013-03-20 06:41 | shankarb | fix_in_branch | pi => |
2013-03-20 06:41 | shankarb | Issue Monitored: AugustoMauch | |
2013-03-20 06:49 | hgbot | Checkin | |
2013-03-20 06:49 | hgbot | Note Added: 0057316 | |
2013-03-20 06:49 | hgbot | Status | scheduled => resolved |
2013-03-20 06:49 | hgbot | Resolution | open => fixed |
2013-03-20 06:49 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/347ce63c377b3d3ddb63ce9dff31da0f9076bc1f [^] |
2013-03-20 17:38 | AugustoMauch | Note Added: 0057338 | |
2013-03-20 17:38 | AugustoMauch | Status | resolved => new |
2013-03-20 17:38 | AugustoMauch | Resolution | fixed => open |
2013-03-21 15:04 | hgbot | Checkin | |
2013-03-21 15:04 | hgbot | Note Added: 0057367 | |
2013-03-21 15:04 | hgbot | Status | new => resolved |
2013-03-21 15:04 | hgbot | Resolution | open => fixed |
2013-03-21 15:04 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/347ce63c377b3d3ddb63ce9dff31da0f9076bc1f [^] => http://code.openbravo.com/erp/devel/pi/rev/815746476942eee8a7810bcfaf16b57cc2ef95b3 [^] |
2013-03-25 18:09 | AugustoMauch | Issue End Monitor: AugustoMauch | |
2013-03-25 18:10 | AugustoMauch | Note Added: 0057450 | |
2013-03-25 18:10 | AugustoMauch | Status | resolved => new |
2013-03-25 18:10 | AugustoMauch | Resolution | fixed => open |
2013-03-25 21:12 | shuehner | Issue Monitored: shuehner | |
2013-03-26 10:42 | hgbot | Checkin | |
2013-03-26 10:42 | hgbot | Note Added: 0057456 | |
2013-03-26 10:42 | hgbot | Status | new => resolved |
2013-03-26 10:42 | hgbot | Resolution | open => fixed |
2013-03-26 10:42 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/815746476942eee8a7810bcfaf16b57cc2ef95b3 [^] => http://code.openbravo.com/erp/devel/pi/rev/affe31812cc059b722cc1540c21b8557d06cacbc [^] |
2013-03-26 12:30 | AugustoMauch | Note Added: 0057459 | |
2013-03-26 12:30 | AugustoMauch | Status | resolved => new |
2013-03-26 12:30 | AugustoMauch | Resolution | fixed => open |
2013-03-26 12:30 | AugustoMauch | Assigned To | shankarb => AugustoMauch |
2013-03-26 12:39 | hgbot | Checkin | |
2013-03-26 12:39 | hgbot | Note Added: 0057460 | |
2013-03-26 12:39 | hgbot | Checkin | |
2013-03-26 12:39 | hgbot | Note Added: 0057461 | |
2013-03-26 12:39 | hgbot | Checkin | |
2013-03-26 12:39 | hgbot | Note Added: 0057462 | |
2013-03-26 16:45 | AugustoMauch | Review Assigned To | AugustoMauch => shankarb |
2013-03-26 16:45 | AugustoMauch | Issue Monitored: shankarb | |
2013-03-26 16:46 | hgbot | Checkin | |
2013-03-26 16:46 | hgbot | Note Added: 0057474 | |
2013-03-26 16:46 | hgbot | Status | new => resolved |
2013-03-26 16:46 | hgbot | Resolution | open => fixed |
2013-03-26 16:46 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/affe31812cc059b722cc1540c21b8557d06cacbc [^] => http://code.openbravo.com/erp/devel/pi/rev/496a086a1450d6f92d9447fd5dce0afc473b653c [^] |
2013-03-28 01:39 | hudsonbot | Checkin | |
2013-03-28 01:39 | hudsonbot | Note Added: 0057518 | |
2013-03-28 01:39 | hudsonbot | Checkin | |
2013-03-28 01:39 | hudsonbot | Note Added: 0057520 | |
2013-03-28 01:39 | hudsonbot | Checkin | |
2013-03-28 01:39 | hudsonbot | Note Added: 0057521 | |
2013-03-28 01:39 | hudsonbot | Checkin | |
2013-03-28 01:39 | hudsonbot | Note Added: 0057522 | |
2013-03-28 01:39 | hudsonbot | Checkin | |
2013-03-28 01:39 | hudsonbot | Note Added: 0057523 | |
2013-03-28 12:02 | shankarb | Note Added: 0057533 | |
2013-03-28 12:02 | shankarb | Status | resolved => closed |
2013-03-28 12:02 | shankarb | Fixed in Version | => 3.0MP22 |
Copyright © 2000 - 2009 MantisBT Group |