March 11, 2016

Dynamics Ax 7, RTW is here

Hi Folks,

Finally we have a RTW(Release to Web) version of new Dynamics AX 7 (build number 7.0.1265.3015) and has been made available for deployments now. you can download virtual machine (VM) with below link

Dynamics Ax 7

(make sure you have require access for this link).

You can also get a lot of reference material + VM on LCS portal (Lifecycle services). LCS will also help you to deploy your desired environment on cloud.

Follow below link to get detailed information,  how to access Microsoft Dynamics AX Development instances, configure on premise development VMs, and find key configurations settings for developers and administrators.
Access Microsoft Dynamics AX Development Instances

That's all for now.

Enjoy….
Harry

March 10, 2016

Welcome To TechBrothersIT: Microsoft Dynamics Lifecycle Services Video Tutori...

Welcome To TechBrothersIT: Microsoft Dynamics Lifecycle Services Video Tutori...: This playlist is dedicated to Microsoft Dynamics Lifecycle Services also known as LCS. This playlist contains videos from overview to detai...

 -Harry Follow us on Facebook to keep in rhythm with us. @Facebookhttps://www.facebook.com/theaxapta

March 03, 2016

FormButtonGroupControl object does not have method “realValue”

 

Hi Guys,

While accessing realEdit control methods in code system gives below error runtime.

Error:

image

Possible solution:

Although there are not such issue with your code. Its just cache issue. Try to clear cache and compile your whole project.

This issue must be fixed now.

Thanks-

Harry

February 26, 2016

Error with Main account lookup: FormDataObject object does not have method 'resolveReference'

Hi Folks,

Recently I faced one issue with Main account lookup on a new table. While selecting value from lookup I am getting several different errors, (see snaps below).

Error message:

Error executing code: FormDataObject object does not have method 'resolveReference'.

Stack trace

(C)\Classes\FormDataObject\resolveReference
(C)\Classes\FormSegmentedEntryControl\resolveReference
(C)\Classes\FormSegmentedEntryControl\modified
(C)\Classes\FormSegmentedEntryControl\Leave
(C)\Classes\FormRun\task
(C)\Classes\SysSetupFormRun\task - line 20

Error Snaps:

clip_image001

clip_image002

clip_image003

Solution:

Try below steps to resolve this issue.

1. Create a normal relation in your table with DimensionAttributeValueCombination table like below

yourTable.LedgerDimension == DimensionAttributeValueCombination.RecId

2. On Form Data source, overwrite below method on LedgerDImension field

public Common resolveReference(FormReferenceControl _formReferenceControl)
{
    return revaluationAccountController.resolveReference();
}

3. Overwrite below methods on Design object control

clip_image004

Make sure you well defined your variable in class declaration and initiate them in form init method.

4. Compile your Form and insert a record.

Let me know if you need complete code for the same, I’ll share.

Thanks

Harry.