Sage 100

 View Only
Expand all | Collapse all

This is what I get for trying to take a few days off

  • 1.  This is what I get for trying to take a few days off

    Posted 01-06-2026 17:37

    What clears the Committed field PER SERIAL NUMBER?

    I rebuilt the IM sort files and the IM_ItemWarehouse says 0 committed, but the serial number continues to show 1 committed.



    ------------------------------
    Beth Bowers
    Dog Mom, first and foremost. The rest is all just necessary to keep the dogs in biscuits.
    (269) 358-0989
    ------------------------------


  • 2.  RE: This is what I get for trying to take a few days off

    Posted 01-06-2026 18:14

    Beth,

    Rebuild Sort Files for inventory Module is what recalculates/clears Quantity Committed by Serial number.  If you already rebuilt those sort files, then there must be an actual commitment, or stranded records in one of the tier distribution tables, most commonly:  

    • SO_SalesOrderTierDistribution
    • SO_InvoiceTierDistribution
    • PM_WorkticketTierDistribution if Manufacturing is in play.

     

    It could be PO_ReturnTierDistribution table too I guess.

     

     

     

     

    **************

    David Overholt

    DWD Technology Group, Inc.

    9921 Dupont Circle Drive West, Suite 300 | Fort Wayne, IN 46825

    260.423.2414 main

    260.399.8655 Direct

    800.232.8913 toll free

    sagesupport@dwdtechgroup.com

    www.dwdtechgroup.com

     

     






  • 3.  RE: This is what I get for trying to take a few days off

    Posted 01-06-2026 18:17

    Thank you - there was an issue with a VI job and I definitely could see these files being all forked over right now



    ------------------------------
    Beth Bowers
    Dog Mom, first and foremost. The rest is all just necessary to keep the dogs in biscuits.
    (269) 358-0989
    ------------------------------



  • 4.  RE: This is what I get for trying to take a few days off

    Posted 01-06-2026 18:40

    Other than SO_SalesOrderTierDistribution, if all registers are updated the other 4 files should have zero records in them. You can make copies and delete any recordsyou find then rebuild sort files again.

     

     

     

    **************

    David Overholt

    DWD Technology Group, Inc.

    9921 Dupont Circle Drive West, Suite 300 | Fort Wayne, IN 46825

    260.423.2414 main

    260.399.8655 Direct

    800.232.8913 toll free

    sagesupport@dwdtechgroup.com

    www.dwdtechgroup.com

     

     






  • 5.  RE: This is what I get for trying to take a few days off

    Posted 01-06-2026 19:06

    Good - that's exactly what I was thinking.



    ------------------------------
    Beth Bowers
    Dog Mom, first and foremost. The rest is all just necessary to keep the dogs in biscuits.
    (269) 358-0989
    ------------------------------



  • 6.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 08:38

    I have a client who used to get this type of error quite a bit. I created a simple Crystal Report that showed all unposted serial numbers that were in invoice data entry. This cut down on some of the issues.

    As noted, 99.9% of the time the rebuild sorts for inventory management should clear any stray committed values



    ------------------------------
    Wayne Schulz
    wayne@s-consult.com
    Schulz Consulting
    (860) 516-8990
    Connecticut
    ------------------------------



  • 7.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:08

    Rebuild Sort Files clears up false committed flags (in IM_ItemCost).

    Legit committed values can be cleared up by normal data entry activities.

    Orphaned rows can exist in the tier distribution tables too, where you need to clean them up via DFDM... here is a query we use to help find orphans.

    select * from BM_ProductionTierDistribution where ProductionNo not in (select ProductionNo from BM_ProductionHeader);
    select * from BM_DisassemblyTierDistribution where DisassemblyNo not in (select DisassemblyNo from BM_DisassemblyHeader);
    select * from IM_TransactionTierDist where EntryNo not in (select EntryNo from IM_TransactionHeader);
    select * from SO_InvoiceTierDistribution where InvoiceNo not in (select InvoiceNo from SO_InvoiceHeader);
    select * from SO_SalesOrderTierDistribution where SalesOrderNo not in (select SalesOrderNo from SO_SalesOrderHeader);
    select * from PO_ReceiptTierDistribution where ReceiptNo not in (select ReceiptNo from PO_ReceiptTierDistribution);
    select * from PO_ReturnTierDistribution where ReturnNo not in (select ReturnNo from PO_ReturnHeader);
    select * from PO_MaterialReqTierDistribution where IssueNo not in (select IssueNo from PO_MaterialReqHeader);



    ------------------------------
    Kevin Moyes
    Technical Systems Analyst
    Munjal White Consulting Co.
    Toronto ON
    ------------------------------



  • 8.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:13

    Thanks for the info Kevin.  I didn't know rebuild sort files cleared up incorrect committed quanities in IM_ItemCost.  I just set one to 0 yesterday for a FIFO item.  if there are only a few it probably makes sense to use DFDM so you don;t have to kick all of the users out. 



    ------------------------------
    Doug Higgs
    Midwest Commerce Solutions, Inc
    (312) 315-0960
    Chauffeur, Chef, and Personal Assistant to Sprinkles
    ------------------------------



  • 9.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:27

    For FIFO you probably need to check IM_DataEntryCostCalcCommit, which is the table that locks tier quantities during the posting process (after printing the journal, before the update is completed). 

    I was not aware IM_ItemCost rows were ever marked as committed for FIFO tiers.



    ------------------------------
    Kevin Moyes
    Technical Systems Analyst
    Munjal White Consulting Co.
    Toronto ON
    ------------------------------



  • 10.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:31

    Yes.  That solved the issue.  They were trying to make a -1 inventory adjustment and when trying to distribute the quantity to a tier the quantity to distribute was not available even though there was 1 on hand.  i changed the committed field in IM_ItemCost to 0 and the quantity was then available to distribute.  Similar to a serial item.



    ------------------------------
    Doug Higgs
    Midwest Commerce Solutions, Inc
    (312) 315-0960
    Chauffeur, Chef, and Personal Assistant to Sprinkles
    ------------------------------



  • 11.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:42

    Ah, that makes sense.  Normally you can't choose the cost tier for FIFO, but IA are the exception.



    ------------------------------
    Kevin Moyes
    Technical Systems Analyst
    Munjal White Consulting Co.
    Toronto ON
    ------------------------------



  • 12.  RE: This is what I get for trying to take a few days off

    Posted 01-07-2026 09:08

    The committed field is in IM_ItemCost



    ------------------------------
    Doug Higgs
    Midwest Commerce Solutions, Inc
    (312) 315-0960
    Chauffeur, Chef, and Personal Assistant to Sprinkles
    ------------------------------