There are some of the best practices that can be implemented while
developing Maximo codes or writing queries.
https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/IBM%20Maximo%20Asset%20Management/page/Maximo%20business%20object%20development
Some
of points from this link are:
- Avoid using Yes\No\Cancel Exception. It is memory intensive since it repeats. If you are forced to use, call Yes\No\Cancel logic in the code as early as possible.
- "not in()" in the query will take much time to execute than "in()".
- Setting of Field Flag (example: making Readonly) should not be done in the init() of mbo. It should be done in the initFieldFlagsonMbo();
No comments:
Post a Comment