Nice day.
I have a customization screen on mobile to get GPS Location of current user when they press a button. The screen works like a charm on Android device but couldn’t work on iPhone even though I have enabled Location Permission for Acumatica in Settings → Acumatica → Location.
My customization screen is as below.
add screen GP30IC10 {
openAs = Form
add container "Params" {
add field "Latitude" {
forceIsDisabled = true
}
add field "Longitude" {
forceIsDisabled = true
}
add field "GPSLocation" {
forceIsVisible = false
special = GpsCoords
}
add layout "Action" {
layout = "Inline"
add recordActionLink "ClockIn"
add recordActionLink "ClockOut"
}
add recordAction "ClockIn" {
behavior = Record
}
add recordAction "ClockOut" {
behavior = Record
}
}
}
Does anybody know how to solve the problem? Do I miss any configuration on iPhone?
Thank in advance