Recently came across a nice and simple functional article.
http://jamesandthegiantaxproject.wordpress.com/ax-quick-reference-shortcuts
http://jamesandthegiantaxproject.wordpress.com/ax-quick-reference-shortcuts
Results. Record ('XXX') . A record with RecId 0 does not exist.
Results. Record ('XXX') . Account does not exist.
Results. Record ('XXX') . Update has been cancelled.
This issue was caused by incorrect lincence configuration when a field was passed on and the key was not enabled.
Below code can be used to clean the data in the staging on the fly.
static void CLearCustomerEntityState(Args _args)
{
DMFCustomerEntity cust;
int counter;
;
counter = 0;
while select forUpdate cust where cust.TransferStatus == 2
{
ttsBegin;
cust.State = "";
cust.County = "";
cust.AccountBalance = 0;
cust.update();
ttsCommit;
counter++;
}
info(strFmt("Cleared : %1",counter));
}
static void InsertSecurityRoles(Args _args)
{
SecurityRole role;
;
ttsBegin;
select forUpdate role;
role.Name='SEC_Group';
role.AOTName='SEC_Group';
role.description='Description of the security role';
role.insert();
ttsCommit;
info("Groups Created");
}


|
MODULES IN Dynamics AX 2009
|
MODULES IN Dynamics AX 2012 R2
|
|
Inventory
Management
|
· Inventory
Management
· Product
Information Management
|
|
Accounts
Payable
|
· Procurement
and Sourcing
· Accounts
Payable
|
|
Accounts
Receivable
|
· Sales
and Marketing
· Accounts
Receivable
|
|
General
Ledger
|
· General
Ledger
· Budgeting
· Fixed
Assets
· Compliance
and Internal controls
|
|
Cost
Accounting
|
· Cost
Accounting
|
|
Bank
|
· Cash
and Bank Management
|
|
CRM
|
· Moved
to Sales and Marketing module
|
|
Master
Planning
|
· Master
Planning
|
|
Production
|
· Production
control
|
|
Product
Builder
|
· Moved
to Product Information Management
|
|
Shop floor
Control
|
In 2012
R2, this modules has been splitted into three modules and is accessible
through Home, Production Control and HR modules.
· Time
and Attendance (HR)
· Clock
In and Out (Home)
· Manufacturing
execution (PC)
|
|
Human
Resource
|
· Human
Resources
|
|
Questionnaire
|
· Moved
to Home
|
|
Expense
Management
|
· Travel
and Expense
|
|
Projects
|
· Project
Management and Accounting (PSA)
|
|
Service
|
· Service
Management
|
|
Basic
|
· Organizational
Administration
|
|
Administration
|
· System
Administration
|