Add custom fields to Maximo Result Set

2019-09-08 10:53发布

I'm using Maximo 7.5 and I added few columns to an custom table. How to get those columns in Startcenter result set. The new fields are visible in Workorder application

1条回答
狗以群分
2楼-- · 2019-09-08 11:40

If you're on an older fix pack, you'll need to insert a row into RESULTSETCOLS, as demonstrated by the insert statement below which was excerpted from this Technote. Note that you will need to adjust the values for the first three columns to suit your needs.

insert into resultsetcols
( app, attribute, maintable, resultsetcolsid ,rowstamp)
values
('WOTRACK', 'LOCATION.DESCRIPTION', 'WORKORDER', resultsetcolsseq.nextval, maxseq.nextval);

However, if you're on Maximo 7.5.0.7+, you can use the front end to accomplish your goals. As detailed in this Technote (which talks about 7.6 but also applies to 7.5.0.7+)...

  1. Create an Object Structure based on the Main Table of the application the Result Set's Query is from. It is important to set Consumed By to REPORTING and include objects you want to show data from in your Result Set on the second or lower level.
  2. Use the Set Report Object Structure Security option in the Report Administration application to grant yourself permission to use the Object Structure you just created.
  3. Create/edit the Result Set and choose the fields you want to include. (Note: If the Result Set Setup screen lacks an Object List tree-control, you probably need to change the webclient.resultset.relatedattributes System Property to 1, as detailed in this Technote.)

Hope that helps.

查看更多
登录 后发表回答