I need to copy the contents of (ExperienceDate1) field to (NewExperienceDate) field if the WorkAssignment value equals 1.
Where/how do I go about doing that? Thank you
BusinessClass: WorkAssignment Form: WorkAssignmentDetail
This bit of LPL would do it.
if (WorkAssignment = 1) NewExperienceDate = ExperienceDate1
You could put that in the entrance or exit rules of an action configuration for the respective create/update actions. Or as a new instance action (or set action) that you write & then run periodically as needed.
Or on the form itself, you could first use config console to define a condition that returns true when WorkAssignment=1 and then add a "when value changed" to ExperienceDate1 and assign NewExperienceDate = ExperienceDate1 when that new condition is true.
(See page 84 of the current [April 2025] LPL guide.)
Thank you the reply and suggestion , I have looked into the Create/Update actions. I just did not see anything related to the WorkAssignmentDetail form …but will take a deeper look.
Thank you , a few options to look into.