Showing posts with label enterprise portal. Show all posts
Showing posts with label enterprise portal. Show all posts

Thursday, 10 March 2016

How to Display SSRS Report into Enterprise Portal in Dynamica Axapta 2012 R2

How to Display SSRS Report into Enterprise Portal in Dynamica Axapta 2012 R2 .Its very Easy.

Please see the below steps.

Step1:

After Creating the SSRS in AX,we need to add that into output menuItem with proper label.
Here label is very important because it will connect between Ep and AX.

Step 2:

\Go to your EP page selct the place where you need to display the Report.There we need to add the web Part click on that we can see the option like "Dynamics Report Server Report".

Step 3:

It will display all the outPut MenuItems,Here we can see the label names for the menuitems. Select your menuitems .thats it.

How to Display SSRS Report into Enterprise Portal in Dynamica Axapta 2012 R2

How to Display SSRS Report into Enterprise Portal in Dynamica Axapta 2012 R2 .Its very Easy.

Please see the below steps.

Step1:

After Creating the SSRS in AX,we need to add that into output menuItem with proper label.
Here label is very important because it will connect between Ep and AX.

Step 2:

\Go to your EP page selct the place where you need to display the Report.There we need to add the web Part click on that we can see the option like "Dynamics Report Server Report".

Step 3:

It will display all the outPut MenuItems,Here we can see the label names for the menuitems. Select your menuitems .thats it.

Thursday, 12 November 2015

How to: Add Web Module Items [AX 2012]

Web Module items are created in the AOT, and then deployed to the server that is running Enterprise Portal.


To create a submodule

  1. In the AOT, expand the Web node, and then expand the Web Modules node.
  2. Expand the Home node. This node represents the main site for Enterprise Portal. The submodules under this node represent module sites for Enterprise Portal.
  3. Right-click the node for the module or submodule to which you want to add the new submodule.
  4. Specify the properties for the new submodule, including the Name and Label.
  5. Specify the MenuItemName property, which indicates which Web Menu Item URL will be displayed for the submodule. Typically, this is the site home page for the submodule. If this page has not yet been created, you can set this property after the page has been created and the URL item for the page has been defined.
  6. Specify the QuickLaunch property, which indicates the Web Menu resource that will be displayed in the QuickLaunch area for all pages in the subsite that have the QuickLaunch web part. Refer to How to: Create a QuickLaunch for more information about how to do this.
  7. Save the changes in the AOT.
  8. Right-click the new submodule and click Deploy. This will create the subsite and menu item for the Enterprise Portal installation.


To create a menu item

  1. In the AOT, expand the Web node, and then expand the Web Modules node.
  2. Expand the Home node. This node represents the main site for Enterprise Portal. The submodules under this node represent module sites for Enterprise Portal.
  3. Right-click the node for the module or submodule to which you want to add the new menu item.
  4. Specify the MenuItemName property, which indicates which Web Menu Item URL will be used for navigation of the submodule menu item.
  5. Save the changes in the AOT.

Wednesday, 11 November 2015


Using the Infolog , Error box on the EP(Enterprise Portal):

 

Solution:     In the portal you can access the infolog by using the Proxy of the Enterprise Portal.

using Proxy = Microsoft.Dynamics.Framework.BusinessConnector.Proxy;

Proxy.Info objInfoLog = new Proxy.Info(this.AxSession.AxaptaAdapter);
 

Now, when you want to write something to the infolog you need to give a Enum with it, so the portal knows if the message you want to show is a info, warning or error. So pass through Proxy.Exception.Info, Proxy.Exception.Warning or Proxy.Exception.Error.

 objInfoLog.add(Proxy.Exception.Warning, "My warning");