Pages

August 8, 2011

Call Java method on action menu or toolbar button click

This entry is part of the Maximo Java Development series.

In this post I will describe all the steps needed to execute custom Java code upon the selection of an entry in the action menu or the click of a button in the toolbar.

Add a sigoption

First you need to create a new sigoption. Open the Application Designer and select the application you want to modify. Select 'Add/Modify Signature Options' and create a new signature RUNJAVA.

Add the menu entry

The second step is to create the custom entry in the action menu (or a new button).
Select 'Add/Modify Select Action Menu' and create the new entry RUNJAVA of type OPTION. Beware that the name must be the same as the sigoption.

Grant sigoption permissions and test the dummy action

Before going on I recommend the test that the new menu entry is visible.
Go in the Security Groups application, select the group you want to be able to see and execute the custom code. Go in the Applications tab and select your application. Now you should see the RUNJAVA sigoption on the bottom of the page. Click on the checkbox to grant access to the new menu entry.

Disconnect and login with a user belonging to the chosen group, go in the application and verify that you see the new menu entry.
Now it's time to attach your Java code to it.

Write your Java code

The most suitable place to put your Java code is in the 'App Bean Class' which is the custom Java class that manages the application.
To determine which Java bean handles the application, open Application Designer and select the application, from the Action menu choose 'Toggle Show All Controls' and display the properties of the 'presentation' section. The 'App Bean Class' defines the Java class that you need to customize. Here is the WOTRACK application App Bean Class definition.

You should extend this class and create a new method with the same name of the sig option in the Java bean class (RUNJAVA in our example).
Don't forget to change the App Bean Class property setting your own custom class.
Here is an example of how the custom class should look like.

package cust.psdi.webclient.beans.workorder;

public class CustWorkorderAppBean extends psdi.webclient.beans.workorder.WorkorderAppBean 
{
  public int RUNJAVA() throws MXException, RemoteException
  {
    // put your custom code here
    return EVENT_HANDLED;
  }    
}

Implement your custom logic in the RUNJAVA method and copy the class file under [SMPDIR]\maximo\applications\maximo\maximouiweb\webmodule\WEB-INF\classes folder. Rebuild and redeploy Maximo EAR file.

9 comments:

  1. thanks you for the article.

    Can You help me with other problem ?
    Is there any possibility to execute custom class by typing this link

    http://localhost/maximo/ui/maximo.jsp?event=loadapp&value=asset&uniqueid=114&additionalevent=xxxxxx

    ReplyDelete
    Replies
    1. Can you please try to extend psdi.webclient.beans.asset.AssetAppBean (the ASSET app bean) as described in this post and call the xxxxxx method from the action menu?
      You can put some traces to see if it works.
      Then try invoking it with the link.
      I think it should work.
      Regards,
      Bruno

      Delete
    2. thank you again, it's working now. I forgot to change class in application designer

      Delete
  2. Hi,
    I followed all steps
    and I now made the class 'CustWorkorderAppBean'
    Where should I put this class to run it?
    Thanks,

    ReplyDelete
    Replies
    1. This article explains how to deploy custom classes: http://maximodev.blogspot.com/2012/05/maximo-extend-java-mbo.html

      Delete
    2. Hi Bruno,
      Thank you very much.
      It worked.

      Delete
  3. Your techincal posts are really good for us ..the maximo thecno consultants.

    If possible can you share some Functional posts especially Work Management , Purchasing and Inventory with workflow ...in terms business cases. It will really helpful for the community.

    ReplyDelete
  4. Hello,


    I am a total beginner. And have a question. How and where can I make this class

    Thank

    ReplyDelete
  5. hi Bruno,

    is there a guide on how to call action(could be tied to an automation script) from a custom java class?

    ReplyDelete

Note: Only a member of this blog may post a comment.