Is there a way on the job req to tie together Work Type and Relationship to Org? When a job req is created if Work Type AF is chosen, we'd like the RelationshipToOrg to only show a value of Employee. Has anyone done this in Infor?
Is the relationship to org a select list field? I believe you can configure the form with a constraint something like:
RelationshipToOrganization
Constraint(RelationshipToOrganization = "EMPLOYEE" and WorkType = "AF")
This should prefilter the list to be Employee if AF is selected. You'd have to include any other Worktype/RTO combinations in the constraint statement though using "OR".
You might also be able to put a conditional "when value changed" LPL statement under the WorkType field...
WorkType
when value changed
refresh ConditionX
RelationshipToOrganization = "EMPLOYEE"
when (ConditionX)
I tried this and it didn't work. Any other ideas?
Can you provide the LPL you used? Here is something similar we used for the HireResource form where we added a constraint to the RelationshipToOrganization field that is dependent on the HomeCountry field value selected. If the Home Country = "US" only "Employee" will display on the RelationshipToOrganization select list.