Hi I need to copy the selector fields in issues screen (Reason Code, Project and Project Task) to the scan and issue screen because they are not exposed to this screen by default except for Reason Code.
I have managed to implement the exposure of the fields as below to the web and face one issue.
The reason code was already available as a field to expose on the web screen. The only issue is that the reason codes gets populated, but it adds the reason code automatically as a default code without showing the selector.
Moreover I have exposed this same fields to the mobile screen and don’t see any selector values for the Reason Code and cannot see the Project and Project task fields on the mobile app screen.
This is the screen logic I have used
update screen IN302020 {
update container "Issue" {
fieldsToShow = 6
add field "ProjectID" {
listPriority = 50
listDisplayFormat = CaptionValue
selector {
fieldsToShow = 2
add field "ProjectID"
add field "Description"
}
pickerType = Searchable
}
add field "TaskID" {
listPriority = 40
listDisplayFormat = CaptionValue
selector {
fieldsToShow = 2
add field "TaskID"
add field "Description"
}
pickerType = Searchable
}
update field "ReasonCode" {
listPriority = 30
listDisplayFormat = CaptionValue
selector {
fieldsToShow = 2
add field "ReasonCodeID"
add field "Description"
}
pickerType = Searchable
}
}
}
Please let me know what I might be missing, thank you!