Open Application and open a Record using a single button

Created
Nov 22, 2021 06:55 AM
Tags
java
Status
Completed
Created Date
 
This tutorial will guide on how to open an application and record using a single button within Maximo. e.g. For example you want to open SR record whose TICKETUID is 1777

Procedure

  1. Using application designer place a button on your app
  1. Add a webclient class on configure it to run the following snippet of code when clicked
    1. WebClientEvent newEvent = new WebClientEvent("changeapp", this.app.getCurrentPageId(), "SR",null, null, null,1777, this.clientSession);
      this.clientSession.queueEvent(newEvent);
  1. Click the button to open SR application and open directly 1777 TICKETUID in it.