Visual Studio Project used to interact with Microsoft Dynamics Axapta, Allow developer to create subset of elements
Three types of Visual Studio Project can be used to develop
1. Report Modeling Projects
It has own templates provided under the microsoft Dynamics Axapta template group
2. Enterprise Portal Web Application Projects
It has own templates provided under the microsoft Dynamics Axapta template group
3. Managed Codce Projects
Once this project is created in visual studio, Axapta elements from application explorer can be added to it by drag an element from application explorer in to project solution explorer
node representing the element will be in the project, also referred to as proxies
Create Evenet handlers in Managed code
1. Open Visual Studio.
2. Create Managed Code project.
3. Rename class like MyPreEventHandler
4. Save your project.
5. Build class,then Build MyPreEventHandler.
6. Right-click on project in Solution Explorer and select Add
"Project Name" to AOT.
7. If the Application Explorer is not visible, open the same.
8. In the code editor, open the MyPreEventHandler class and place
cursor somewhere inside the class.
9. In the Application Explorer, locate SalesFormLetter class.
Expand the same and locate the run method.
10. Right-click the run method and select Add pre event handler.
11. make sure that event handler method is created
Deploying Managed code
In procedure VB.net used instead of C#
Three types of Visual Studio Project can be used to develop
1. Report Modeling Projects
It has own templates provided under the microsoft Dynamics Axapta template group
2. Enterprise Portal Web Application Projects
It has own templates provided under the microsoft Dynamics Axapta template group
3. Managed Codce Projects
Once this project is created in visual studio, Axapta elements from application explorer can be added to it by drag an element from application explorer in to project solution explorer
node representing the element will be in the project, also referred to as proxies
Create Evenet handlers in Managed code
1. Open Visual Studio.
2. Create Managed Code project.
3. Rename class like MyPreEventHandler
4. Save your project.
5. Build class,then Build MyPreEventHandler.
6. Right-click on project in Solution Explorer and select Add
"Project Name" to AOT.
7. If the Application Explorer is not visible, open the same.
8. In the code editor, open the MyPreEventHandler class and place
cursor somewhere inside the class.
9. In the Application Explorer, locate SalesFormLetter class.
Expand the same and locate the run method.
10. Right-click the run method and select Add pre event handler.
11. make sure that event handler method is created
Deploying Managed code
1. Build the project.
2. Right-click project and add the same to AOT.
3. Set deployment properties for the project.
4. Right-click project and deploy the project.
2. Right-click project and add the same to AOT.
3. Set deployment properties for the project.
4. Right-click project and deploy the project.
In procedure VB.net used instead of C#