Maximo Open Forum

 View Only

 APPLICATION DESIGNER QUESTION

  • Administration
  • Customizations
Danny Richardson's profile image
Danny Richardson posted 04-05-2023 10:02

In Item Master we have uploaded the picture of an item.  We would like to add that same image in Inventory to pull the image from Item Master if possible.   
If not, I was able to add the Record Image to the APP, but don't know how to add a button to add the image.  Any help is greatly appreciated. Thank you

Christopher Winston's profile image
Christopher Winston

The inventory application has navigation to the item master record image:



this should work by default, so if you can see it in Item Master, you should be able to navigate to it in Inventory. 

Travis Herron's profile image
Travis Herron

Danny,

It's been a long time since I configured it, but in a quick glance at it it looks like it was very straightforward to add a recordimage element to the page, in both Item Master and Inventory.  For example,






This is an excerpt from my INVENTOR.XML; just pay attention to the line with the recordimage:

<tab id="main" label="Inventory" type="insert">
    <section border="true" id="main_header">
        <section id="1468268943492">
            <sectionrow id="1468268951211">
                <sectioncol id="1468268962071">
                    <textbox dataattribute="ITEMNUM" id="1468268975086" inputmode="readonly" menutype="ITEM"/>
                </sectioncol>
                <sectioncol id="14682689512112">
                    <textbox dataattribute="ITEM.DESCRIPTION" id="1468268984274" inputmode="readonly" longdescreadonly="true" lookup="LONGDESC" 
                        size="80"/>
                </sectioncol>
            </sectionrow>
        </section>
        <sectionrow id="main_header_row1">
            <sectioncol id="main_header_row1_col1">
                <section id="main_grid3">
                    <recordimage height="120" id="1468269238433" width="120"/>
                    <multiparttextbox applink="storeroom,ipc" dataattribute="location" descdataattribute="locations.description" descinputmode="readonly" 
                          desclookup="longdesc" id="main_grid3_3" menutype="normal" title="Storeroom"/>
                    <textbox dataattribute="item.lottype" id="main_grid3_8" inputmode="readonly" title="Lot Type"/>
                    <textbox dataattribute="costtype" id="main_grid4_2b"/>
                    <textbox dataattribute="receipttolerance" id="main_grid4_2a"/>
                </section>
            </sectioncol>
Alain Wiest's profile image
Alain Wiest

Hello, 

You can add a section with the image display in the inventory application.


You need to create a new relationship in the database configuration application between INVENTORY and IMGLIB


Clause Where : 
refobject='ITEM' and refobjectid =(select itemid from item where itemnum = :itemnum and itemsetid = :itemsetid)

The image that has been added in the ITEM application will be visible in the INVENTORY application.

If you want to add an image directly from the INVENTORY application, you have to add a new sigoption in the application designer.


Option : ITEMIMAGE

All that remains is to add the rights for the security group(s).
 
The screenshots were made on my French environment.
Thanks.