Original Message:
Sent: Thu November 13, 2025 07:36 AM
From: Meghana Siriveli
Subject: Button count display Issue on Mobile Version of Asset Manager Application
Hi Bartosz,
The button count is not displayed during the page Initialization. When I navigate back to List page, click on Check for Updates, and navigate back to Details page, I can see the count.
The same behavior is observed for adding some fields from asset table on the details page. The value is blank when the page is first opened, but system is fetching values on check for updates button
------------------------------
Meghana Siriveli
Original Message:
Sent: Thu November 13, 2025 05:25 AM
From: Bartosz Marchewka
Subject: Button count display Issue on Mobile Version of Asset Manager Application
Hi Khairi,
xopenwo is relationship and xopenwocount is alias. What do you mean by marked them as Included and Is Published.
In my opinion there are no such options for relationship and alias.
------------------------------
Bartosz Marchewka
IBM Maximo Consultant
AFRY
Original Message:
Sent: Thu November 13, 2025 04:54 AM
From: Khairi Chmengui
Subject: Button count display Issue on Mobile Version of Asset Manager Application
hello
juste to make sure , your custom relationship xopenwo and attribute xopenwocount are available and marked as Include = Yes and Is Published = Yes ?
------------------------------
Khairi Chmengui
Original Message:
Sent: Wed November 12, 2025 11:05 AM
From: Meghana Siriveli
Subject: Button count display Issue on Mobile Version of Asset Manager Application
For a requirement in the Asset Manager application, I need to display a button labeled "Open Work Orders" below the "Attachments" button on the Asset Details page. This button should include a badge showing the count of open work orders, similar to how the Attachments button displays its count.
I have implemented the following code to achieve this, and the changes are working as expected in the RBA application. However, the same changes are not reflecting in the mobile version of the app.
A New button is placed in Asset Details page below Attachments button:
--OOB
<navigator-tile badge-type="dark-gray" badge-value="{assetDetailsDS.item.computedDocLinks}" id="ezp9j" onclick-action="showAttachmentPage" onclick-action-arg="{{'item':assetDetailsDS.item}}" pictogram="maximo:document--attachments" tile-label="Attachments"/>
--Custom
<navigator-tile badge-type="dark-gray" id="x_ezp9j" badge-value="{assetDetailsDS.item.xopenwocount}" onclick-action="showOpenWOPage" onclick-action-arg="{{'item':assetDetailsDS.item}}" tile-label="Open Work Orders"/>
Definition of xopenwocount in maximo datasource id="assetDetailsDS" similar to doclinkscount
--Custom
<attribute id="xwo" name="xopenwo">
<attribute id="xwo1" name="_dbcount--xopenwocount"/>
</attribute>
--OOB
<attribute id="be5g3" name="doclinks">
<attribute id="dye3k" name="_dbcount--doclinkscount"/>
</attribute>
xopenwo is a realtionship name from Asset to Workorder with the following where clause:
assetnum = :assetnum and historyflag = 0 and siteid=:siteid order by reportdate desc fetch first 50 rows only
Any Pointers would be really helpful
------------------------------
Meghana Siriveli
------------------------------