Adding a parameter to the Leads (CR3010PL) GI for OwnerID which defaults to “@me” works beautifully on desktop, but on mobile the parameter selector isn’t showing (the filter is technically working, because the leads are indeed filtered). This means that on mobile there isn’t a way to display all the leads, which is why I would love to use that selector.
I know that we could use a shared filter, but the request is that “All Records” be filtered by default.
I followed the steps outlined in this post (https://stackoverflow.com/questions/48670213/generic-inquiry-in-acumatica-mobile-app), but unfortunately the `Filter_` container isn’t displaying on the app after a publish.
Commands:
update screen CR3010PL {
type = FilterListScreen
add container "Filter_" {
placeBefore container "Result"
add field "OwnerID"
}
}
Result:
add screen CR3010PL {
type = FilterListScreen
add container "Filter_" {
add field "OwnerID"
}
add container "Result" {
fieldsToShow = 4
listActionsToExpand = 1
containerActionsToExpand = 1
add field "DisplayName_"
add field "JobTitle"
add field "AccountName"
add field "Status"
add containerAction "editDetail" {
behavior = Open
redirect = True
}
add containerAction "insert" {
icon = "system://Plus"
behavior = Create
redirect = True
}
}
}
We’re using 24R1 and hopefully someone is able to shine some light on this one.
Thanks!