Blog Post: Basic inventory unit setup for an item
When setting up a new item you want to carefully consider how you handle the units of measure and what units you need. When you setup an item you define the UOM for sales, purchase and inventory as the...
View ArticleBlog Post: Basic inventory unit handling for sales
In a previous post we had a look at setting up the units of measure for a new item and the effect on the purchase and inventory on-hand. When selling the item the units will come into affect as well....
View ArticleBlog Post: Risk Management Strategies for Process Manufacturing
Some risk is accepted as part of the business model for process manufacturing. But, for most management teams, it’s an uneasy reality. With constant fluctuation in the commodities market, the solution...
View ArticleForum Post: RE: There are ledger journal lines missing that are required to...
That error is generated in class AxdExportCustVendPayment method validateRecords(). It's looking for a record with a payment schema name of SEPACreditTransfer or SEPADirectDebit. Is that helpful?
View ArticleForum Post: RE: Find Relations from DirpartyTable table to...
It makes no sense to try to link DirPartyTable to GeneralJournalEntry. Why are you trying to find such a link? Is the DirPartyTable actually a customer (CustTable)? In that case, are you trying to find...
View ArticleForum Post: RE: Unable to allocate sequence numbers for...
I recently had this problem, but I was able to trace it to a customization where I was creating a Connection object and failing to use ttsbegin() and ttscommit(), which is an odd reason for the NextVal...
View ArticleForum Post: RE: Historical Fixed Asset reporting
The Fixed asset statement asks for a Start date and End date. Have you tried using no Start date and your "as of" date as the End date? You can automate the setup of the Fixed asset statement rows....
View ArticleForum Post: RE: Report print settings
Assuming that your controller is based on SrsReportRunController, the decision about whether to display the Current print destinations is made by the showPrintSettings() method. Put a breakpoint there,...
View ArticleForum Post: RE: AX 4.0 performance drop when matching quantities in purchase...
Lately I've found updating statistics regularly solves problems like this. Since you're on AX 4.0, if you have many companies and they are lop-sided (some much bigger than others), consider enabling...
View ArticleForum Post: RE: Calling a method on one of a view’s data sources
It is not possible in a view to access methods of underlying data sources. The reasoning is simple. Views in the AOT become SQL Server views directly in the database, and SQL Server cannot run X++....
View ArticleForum Post: RE: Setting permissions for cost price to "No Access"
You can also check in the element.init() method of the form to see if the user is allowed to see the control, and set .visible(false) if not. You can then implement quite complex logic in deciding...
View ArticleForum Post: RE: is there a sales person ID (or worker) on the Customer card?
It's perfectly reasonable and common to assign a sales person to a customer, but the relationship is not as straight forward as Employee responsible. Create a Commission sales group (Sales and...
View ArticleForum Post: RE: Role has no effect on all companies
Could the menu item button be associated with a specific country/region, and the companies where you do not have access are not part of that country/region?
View ArticleForum Post: RE: AX2012 inplace upgrade from AX2012 FTP to AX2012 R3
The element type of 42 means it's a table field. You can figure out which table and field exactly by running the following SQL on your model store. select t.Name AS TableName, f.name AS FieldName from...
View ArticleForum Post: RE: General Journal Account Entry Table SQL Statement
You've mentioned "the dimension" multiple times, but there can and often are many dimensions associated with a LedgerDimension/DAVC value. Here's an example of extracting the Business unit dimension...
View ArticleForum Post: RE: General Journal Account Entry Table SQL Statement
If you're interested in an X++ solution, let me know and I'll post some examples.
View ArticleForum Post: RE: AOS Crashing
Have you tried starting up the tracing cockpit? Might it record right up to the point of the crash, and at least provide some clues as to what code causes it to crash?
View ArticleForum Post: How to create work for a 60 pcs instead of 54 during transfer...
Hi, I have received nice answer for the same for raw material picking . My question is now for transfer order picking. Transfer order picking does not have the round up functionality. I guess and will...
View ArticleForum Post: RE: Filter By Grid user option impacts performance
Hi Brandon - did the hotfix work? It was raised by StarBase to the highest level we could get in Microsoft, and as stated above they recognised the performance issue but said they would not fix it -...
View Article