Maximo-获取url

//访问报表
public void OPENREPORT() throws RemoteException, MXException{
  int polineid=this.getMbo().getInt("polineid");
  String baseUrl=clientSession.getMaximoBaseURL();
  String requestId = (new StringBuilder()).append(System.currentTimeMillis()).append("").toString();
  String reportUrl=baseUrl+"/maximo/report?__report=cpdj.rptdesign&appname=ST_CPDJ&" +
          "where=polineid="+polineid+"&__requestid="+requestId;
  sessionContext.getCurrentApp().openURL(reportUrl, true);
}

原文地址:https://www.cnblogs.com/coderpan/p/5395444.html