/
Initialize field values for a transition screen
Initialize field values for a transition screen
Problem
Enable a user to change the default field values in the transition screen.
Solution
You can use Live Fields to resolve this issue. For details, refer to the accessing the current screen documentation with Live Fields.
For instance, let's explore a scenario where a rule is established to set the assignee on the "Resolve Issue" screen to the reporter. This configuration enables the reporter to validate and confirm issue resolution. If the issue is resolved, the reporter can then close it.
if(argv["screen"] == "trans_5") {
//On the "Resolve Issue" screen, set the assignee to the reporter
// so the user can test it and confirm that the issue is fixed.
lfSet("assignee", reporter);
lfDisable("assignee");
}
The code above prevents the user from changing the value of the assignee field.
, multiple selections available,
Related content
Use Live Fields to initialise field values for a transition screen
Use Live Fields to initialise field values for a transition screen
More like this
Default values of (system) fields on create screen
Default values of (system) fields on create screen
More like this
Set default values for system fields on the Create screen
Set default values for system fields on the Create screen
More like this
How to store the original reporter in user picker custom field using Create on Transition
How to store the original reporter in user picker custom field using Create on Transition
More like this
Set field value (Deprecated)
Set field value (Deprecated)
More like this
Live Fields Functions
Live Fields Functions
Read with this
Need support? Create a request with our support team.
Copyright © 2005 - 2025 Appfire | All rights reserved.