Skip to main content

Maximo Functional Interview questions

 Functional interview Questions :-


1. What is an Asset, Item?( Remeber Asset num is unique and item num is common.. rotating asset is something that we track can be repained but not replaced..and move or out from inventory....
2. On what basis you can select architecture to be single site / multisite etc.(Remember glaccounts)...
3. What are ways you can create Work order in Maximo?
4. What are ways you can create Invoice in Maximo?
5. What is Asset life cycle?
6. What is Purchasing Life Cycle?
7. What are different modules of Maximo?
8. How many types of contract can be created in Maximo?
9. What is EAM?
10. Explain reorder process?
11. Explain Pm functionality and how earliest next due date calculated?
12. How do you configure security groups?
13. What is an independent security group and dependent security group?
14. You have uploaded some workorders and next day activated pmwogen cron which created some more wo's ? Now client does not wants pmwogen wos sequence to be after uploaded wo's sequence how would you correct it?
15. What is reorder point and economic order quantity?
16. How to call an automation script from another automation script?
17. What type of assets are focus in Maximo?
18. What is the difference between TSRM, SCCD and Maximo
19. What is the difference between Maximo 7.5 and 7.6.
20. How to let maximo not to track status history for tasks workorder?
21. What are features of Maximo 7.6
22. How will you make Maximo Service request application to work as a work order if in case client requires it ? Is it possible?
23. Is there any search criteria for vendor if yes where and how it is used if not how can we create one....in case of po creation automatically by system....
24. Where does entry for Order number (PONUM) for reciept from PO created in vendor ERP goes in maximo.........?
25. What will be setup and what value to be setup for say your invoice is just double the Po cost.?
24. What is required to create a compony in Maximo?.............
25. Can a non-stock material have a storage location in Maximo?
26 Explain in basic terms why we create Company master and Item master? Why we design maximo like that instead of directly creating a item's ?........
27. What is FOB and NET30 ? //Net 30 is 30 days of credit i.e vendor gives you 30 days for the payment and FOB is free of board means vendor will diliver the goods at your warehouse these are payments terms and frieght terms.....
28. If a pm has both route and location? then how many workorders'  will the pm will generate from pmwogen  or manually?
29 How to transfer an asset from one storeroom to another ( hint inventory usage)
30 How u can manage missing/found scenarion in asset application?
31. What is QBR reporting?
32. What are stocked , Non stocked and special items...
33. What is required to track inventory cost when issueing item ( Either it should HV one of the following. Wo, gl debit, location or an asset... So maximo will charge against it... ) 

Team Lead Questions..(If you are going for this position pls. answer confidently)

1. How u use Agile in your project.. what's the process...?
2. How do you handle difficult clients..?
3. How you keep team motivated...?
4. How much you are involved in Solutioning..
5. What is the size of team you are handling...
6. What are your day to day activities as a Team Lead...

Comments

Popular posts from this blog

Maximo Interview Questions - Maximo Technical and Functional Questions

Technical Questions How do you rate your self in :- 1. PL/SQL 2. Java 3. Automation Script 4. Mbo Customization 5. Admininstration Jobs 6. Funtional Concepts 7. Maximo Configuration Do not rate anything less than 7 unless you don't want interview to skip the topic Deployment / Administration  1. Explain LDAP integration? 2. Explain SSO and LTPA token? 3. What is global security? 4. How session is managed in Websphere or Maximo? 16. How to insert attributes from Backend? 5. How request is passed in Maximo? 6. How to do horizontal and vertical clustering? 7. Explain how you confire websphere for maximo manually? 8. What are Websphere MQ? 9. What is JMS, Connection Factory and Queues? 10. What is difference between vmm and ldap sync integration ? 11. What is Standalone and federated repository? 12. How to install a new language in Maximo? 13. What are the steps to apply a Fix pack in Maximo, Websphere or DB2? 14. Have you worked on any performance checking tools? 15...

Maximo Bean Class Methods

Methods of Bean Classes of Maximo Reset Method   This method is called when a new filter is applied for the dialog's MboSet.  @see psdi.webclient.system.beans.DataBean#reset()     @Override     public void reset() throws MXException     {             try         {                 saveCurrentSelection();         }         catch (RemoteException e)         {             handleRemoteException(e);         }         super.reset();     } Initialize It is used to initialize values on a d...

BMXAA4211E - Database error number 1 has occurred when operating mbo...

 BMXAA4211E - Database error number 1 has occurred when operating on WFINSTANCE This solution you can use for any table generic solution in oracle db only  this is duplicate id issue.. (if you cannot remove duplicate just increase nextval like i did since in my case too i can't find duplicate and max value is greater than nextval. select max(WFID) from maximo.wfinstance *select maximo.WFINSTANCESEQ.NEXTVAL from dual; increase you value with some 1000's from o/p of query 1... example *alter sequence maximo.WFINSTANCESEQ restart start with 17572034; Similary if it comes for wfcallstack   BMXAA4211E – Database error number 1 has occurred when operating on WFCALLSTACK:   Report the error to the owner of the deployment.     check maxvalue    select max(wfcallstackid) from maximo.WFCALLSTACK     check next value    select maximo.WFCALLSTACKSEQ.NEXTVAL from dual; increase value by some 10000 etc...... alter sequence max...