Thursday, December 23, 2010

Dynamics AX EP Toolbox item not showing up

Question:
I can not see the EP toolbox items on visual studio.

Answer:

1- Open Visual Studio
2- Goto Toolbox -> Right click -> choose items
3- If AX* Items are there on .Net table select them all
4- If not go to dynamics ax main folder\client\bin and select
Microsoft.Dynamics.Framework.Portal file
5- Now you should be able to see the AX* Items, select them all and you should be good to go.

Tuesday, December 21, 2010

Creating a project with all files from a specific layer

Create a new project.

Apply an advanced filter on it - you can see it on the top.(Click on that)

Now a project filter will get opened.Click on select - now an inquiry will get opened.

In that for

Table - Application Level

Field - Util Level

Select criteria as - USR

Click Ok and again OK on project filter - now system will include all the usr layer objects to the project.

Sunday, December 12, 2010

Dynamics AX and SSRS Videos

Query:
I am new to SSRS in Dynamics AX where can I get started.

Answer:
Use the following link to access all the videos you need for getting started,



Thursday, December 9, 2010

Dynamics AX Audio Recorder

Question:
What is the best technique to use an audio recorder?

Answer:
Use the following link to use the recorder.

and use .Net business connector to connect to the .Net interface.

Sunday, December 5, 2010

LogonSystemChangedException Dynamics AX

Question:
I am getting LogonSystemChangedException when logging into Dynamics AX using business connector. What can be the cause of it?

Answer:
The correct way to use the method is,

dynamicsAX.LogonAs("AX Alias", "domain",
new System.Net.NetworkCredential("bcaccount", "bcaccountpassword", "domain"),
"company", null, "Instance@server:port", null);

Sometimes you get this issue if you have been logged in with another business connector account. If this is the case make sure to logoff from all business connector sessions and try again.