Maximo Open Forum

  • 1.  Show Last 8 Digits of ITEMNUM in UI

    Posted 05-26-2025 03:17

    Hi everyone,

    In the Work Order Tracking application, under the Plans → Materials tab, we are trying to improve how ITEMNUM is displayed.

    Currently, the ITEMNUM field contains long values like 0000000064895214. In the UI, only the first part of the value is visible (e.g., 00000000), and we have to right-click or hover to see the rest.

    What we want is for the last 8 digits (e.g., 64895214) to be visible directly in the same field (ITEMNUM) in the UI - without altering the actual stored value. The full item number should remain intact in the backend and available when the user right-clicks or drills in - we just want the UI to show the last 8 digits instead of the first.

    Is there any way to control this - maybe via a relationship, field mask, view, or formatting trick - to change what part of the string is rendered in the field, without creating a new field or modifying the stored data?

    Thanks in advance for any guidance or workaround ideas!


    #Administration
    #Inventory
    #MaximoApplicationSuite
    #WorkManagement

    ------------------------------
    Raziela Avdylaj
    InfoSoft Business Solutions
    ------------------------------


  • 2.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-26-2025 09:11

    If displaying the entire value in the UI is acceptable, then you can add the 'size' property against that data attribute i.e., size="20" in the presentation xml. This will increase the width of the control in the UI. 



    ------------------------------
    Arul Jefferson
    Naviam
    ------------------------------



  • 3.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-29-2025 09:26

    Thank you, Arul!
    Your suggestion about increasing the size property in the presentation XML makes sense for improving visibility. I'll definitely try that as a UI enhancement, especially since many item codes get cut off. Appreciate the quick win!



    ------------------------------
    Raziela Avdylaj
    InfoSoft Business Solutions
    ------------------------------



  • 4.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-27-2025 19:11

    Good morning, Raziela

    Quick answer = no

    Longer answer = Refer to Arul's answer

    My question is not why the item number is so long, but why, based on what you've shown us, is it padded with 0's.  This is not something that Maximo does, so I assume that it's from an external system.  If the 00000000 is a fixed length, I would encourage that you have these stripped off on the inbound transactions, and put back on the outbound, since most time we cannot get the external system fixed.



    ------------------------------
    Craig Kokay
    Principal Consultant
    COSOL

    email: craig.kokay@cosol.global
    #IBMChampion
    ------------------------------



  • 5.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-29-2025 09:26

    Thank you, Craig - you're absolutely right.
    The ITEMNUM values are coming from SAP, and they are indeed padded with zeroes. While it would be ideal to strip those at the integration layer, that's outside of my control at the moment. Your insight gave me a better understanding of the root cause though - much appreciated!



    ------------------------------
    Raziela Avdylaj
    InfoSoft Business Solutions
    ------------------------------



  • 6.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-28-2025 17:07

    Ideas already mentioned sound good and may work for you. If they don't...

    Another alternative is to create a non-persistent attribute on Item and put an automation script on its attribute initialization launch point that would read the item number and set itself (the attribute) to that item number with the leading zeros removed. You could do the same in other places where an Item number is needed but add another launch point to format and forward value updates to the real item number attribute.



    ------------------------------
    Blessings,
    Jason Uppenborn
    Cohesive
    ------------------------------



  • 7.  RE: Show Last 8 Digits of ITEMNUM in UI

    Posted 05-29-2025 09:27

    Thanks, Jason - your suggestion is exactly what I was looking for.
    I've created the non-persistent attribute and added the automation script to set the last 8 digits of the Item Number, but I'm not seeing the values yet. I suspect the script isn't firing correctly, so I'll continue debugging. Really appreciate it!



    ------------------------------
    Raziela Avdylaj
    InfoSoft Business Solutions
    ------------------------------