Noncritical bug found in class TaxSpec in Dynamics AX2009 SP1.
The method taxExemptDescription uses a returntype of Description ( 60 char), but returned variable is of type Memo / Notes.
You’ll will always get the first 60 character of the defined text.
Description taxExemptDescription()
{
return taxExemptDescription;
}
change to:
Notes taxExemptDescription()
{
return taxExemptDescription;
}
and the same [...]
Search
Tags
Categories
- Dynamics AX (6)
- Bugs (2)
- Development (3)
- Install (3)
- Miscellaneous (1)
- Security (3)
- wooly thoughts (1)
Archives
- January 2010 (1)
- December 2009 (3)
- November 2009 (1)
- January 2009 (4)
- December 2008 (2)
Recent Comments