have the same thing occurring on a Generic Inquiry exposed to the mobile application.
inquiry has the inventory id showing up fine in the UI, but on mobile app….item description is showing instead?
going to open up a case, as I'm not sure if this is related to 2021R1 build or not?
thx
@mdickson23 You can look for Case #193115. I just have no idea why they use description.. I also submit an idea on the community.
The answer is below:
At this time there is no functionality change this display to show the ID's
I would suggest you add this to the ideas page on the community.acumatica.com so that this can be voted on by other partners or customers and considered in future product enhancements
If you need an immediate solution you would need to consult with the service group for proposal for a customization.
In the mobile app, it should be an easy fix. This tends to be caused by the Description parameter being defined on the selector. The mobile app assumes you want to see this value instead of the Code. Just add selectorDisplayFormat as shown below. This is what worked for me. It overrides the selector settings and returns to displaying the value most of us expect to see.
add field "InventoryID" {
selectorDisplayFormat = Key
}
@brianstevens This is really help. Thank you. I will try it and get back for updates.
@brianstevens You are awesome. It’s working. I didn’t use “add”. The system raised an error message. I use “update” to apply the code. It’s still working. Thank you so much.
The simple code is below:
update screen PO302020 {
update container "PutAway" {
update field "InventoryID" {
selectorDisplayFormat = Key
}
update field "Location"{
selectorDisplayFormat = Key
}
}
}
In the mobile app, it should be an easy fix. This tends to be caused by the Description parameter being defined on the selector. The mobile app assumes you want to see this value instead of the Code. Just add selectorDisplayFormat as shown below. This is what worked for me. It overrides the selector settings and returns to displaying the value most of us expect to see.
add field "InventoryID" {
selectorDisplayFormat = Key
}
Hello!
Were do you go to change this? I am trying to fix it on the mobile app but also on a Zebra handheld.
Thanks!