Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0005162
TypeCategorySeverityReproducibilityDate SubmittedLast Update
backport[Openbravo ERP] 09. Financial managementminoralways2008-09-22 18:012009-05-21 16:37
ReporternetworkbView Statuspublic 
Assigned Tovmromanos 
PrioritynormalResolutionfixedFixed in Version
StatusclosedFix in branch2.40-installerFixed in SCM revision7663
ProjectionnoneETAnoneTarget Version
OSLinux 32 bitDatabaseOracleJava version
OS VersionDatabase versionAnt version
Product Version2.35MP5SCM revision 
Review Assigned To
Web browser
ModulesCore
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0005162: Is not possible to change the alias in Account Combination window

DescriptionIt is currently not possible to modify the alias in window: Account Combination, as the alias in Valid Combination is overwritten by the value of the Element Value via a trigger.

Steps To ReproduceFinancial Management>Accounting>Setup>Account Combination

Change the Alias and save
Proposed SolutionModify the C_VALIDCOMBINATION_TRG so that whenever the alias in Account
Combination is empty, the value from Element Value is used. Whenever the alias is filled, it will not update from elementvalue anymore.

Modify

IF (Cur_AC%NOTFOUND) THEN -- mandatory
v_IsFullyQualified := 'N';
ELSE
:new.Alias := v_TempValue; --Alias is the account no
END IF;

to:

IF (Cur_AC%NOTFOUND) THEN -- mandatory
v_IsFullyQualified := 'N';
ELSE
IF (:old.Alias is null) THEN
:new.Alias := v_TempValue; --Alias is the account no
END IF;
END IF;

Attached you fill find the modified C_VALIDCOMBINATION_TRG
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
blocks defect 0004801 closedvmromanos Is not possible to change the alias in Account Combination window 

-  Notes
(0009130)
svnbot (reporter)
2008-09-22 18:02

Repository: openbravo
Revision: 7663
Author: cromeroherrero
Date: 2008-09-22 18:02:12 +0200 (Mon, 22 Sep 2008)

Fixed bug 5162: Is not possible to change the alias in Account Combination window

---
U branches/r2.40-installer/src-db/database/model/triggers/C_VALIDCOMBINATION_TRG.xml
---

https://dev.openbravo.com/websvn/openbravo/?rev=7663&sc=1 [^]

- Issue History
Date Modified Username Field Change
2008-09-22 18:01 cromero New Issue
2008-09-22 18:01 cromero Assigned To => vmromanos
2008-09-22 18:01 cromero Status new => scheduled
2008-09-22 18:02 svnbot Checkin
2008-09-22 18:02 svnbot Note Added: 0009130
2008-09-22 18:02 svnbot Status scheduled => resolved
2008-09-22 18:02 svnbot Resolution open => fixed
2008-09-22 18:02 svnbot svn_revision 7536 => 7663
2009-05-21 16:37 psarobe Status resolved => closed


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker