Showing posts with label Reorder. Show all posts
Showing posts with label Reorder. Show all posts

Saturday, 23 February 2019

Primary Vendor attribute vs Default Vendor checkbox in Reorder Tab | Maximo

In inventory application, Reorder tab:

1. Primary Vendor is an text field 
2. Default Vendor is a check box in Vendors section to select one vendor as default. 

above mentioned both type are separate in Maximo although they seems identical. 

1. Maximo will take the precedence to the Vender entered in Primary Vendor while reordering, (its a process to manually select any vendor for the item ). If and only if the primary vendor is not entered, then it will take default vendor from vendors list attached to this item. Primary vendor is identifier of the primary vendor for the item. 
You will notice that whenever you select any company in primary vendor field and Maximo generates a new row in vendors section in bottom of Reorder Details tab. 

2. Default vendor check box in Vendors Section, you may enable only one default vendor in inventory/reorder details/vendors section but you can add/attach as much vendor as you can with the one item. If the check box is selected, this will be the default vendor used on Work Order Planned Materials and Services lines for direct issue requisitioning.


reference: https://www-01.ibm.com/support/docview.wss?uid=swg21470910

Saturday, 22 December 2018

Maximo Reorder Formula Redesign | IBM Maximo

Few days ago we had a requirement to alter the default Reordering process used in Maximo. For that we came to a solution which is very simple through Maximo Automation Script but it takes us a lot of research to cater all the impacts and other issues.
In reorder process Maximo uses Reorderpad tables and ReorderMutex to lock other while reordering.



Wednesday, 11 November 2015

Find all Inventory Items with Current Balance is Less Than 1 To Reorder, – IBM Maximo


Its a simple trick to query all those record whose current balance is less or equal to 0. Its a good one to see whether we should run Reorder or not. 



Create a Save a Query with just a simple step.

  1. Click on where Clause in Advanced search button, and paste given code in it and then press Save Query Button, Enter Name (for example CURR BALANCE), Description and hit Save.
  2. Now Newly created query is displayed in your Action Menu. Just click on query name (CURR BALANCE in my case). 


inventoryid in (select inventory.inventoryid
from inventory
inner join invbalances
on inventory.siteid = invbalances.siteid
and inventory.itemnum = invbalances.itemnum
and inventory.itemsetid = invbalances.itemsetid
and inventory.location = invbalances.location
and invbalances.curbal < 1)