Skip to main content

Posts

Showing posts from September, 2016

AX 2012 - Username and password keeps prompt on Home | Role center page

After Enterprise portal in being installed and have configured in AX 2012, sometimes username and password keeps prompt for Home | Role Center page. However, this is irrespective to AX as any web application can be configured in IE settings for username and password. First option Steps outlined on this MSDN page resolves this issue. https://msdn.microsoft.com/en-us/library/cc750194.aspx Second option IE explorer | Internet options | Security | Intranet (or your settings), Select custom level scroll to the bottom | User Authentication and select autologon depending upon your setup

AX 2012 - Create and Post hour journal through X++

Following job can be used to create, validate, and post hour journal in Project Management and Accounting module in AX 2012 R3. static void createHourJournal(Args _args) {     ProjJournalTableData    JournalTableData;     ProjJournalTransData    journalTransData;     ProjJournalTable        journalTable, journalTableUpdate;     ProjJournalTrans        journalTrans;     ProjTable               projTable;     ProjInvoiceTable        projInvoiceTable;     NumberSeq               numberSeq;     ProjJournalCheckPost    jourPost;     Proj...