SOLVED: Three forms, tryign to auto populate third form using values of first form
I have three forms Parent Process, Process and Process Task
Parent Process Form
Field: Title
Type: Single line of text
Process Form
Field: Title
Type: Single line of text
Field: Parent Process
Type: Multi Select Lookup based on Parent Process Title
Process Task Form
Field: Title
Type: Single line of text
Field: Process
Type: Single Select Lookup based on Process Title
Field: Parent Process
Type: Multi-Line text. Values fetched based on the selection made in the Process field. The script to perform the fetch is:
x = (Process[ID == input.Process].Parent_Process).getall();
input.Parent_Processes=x;
I want to fetch the Parent Process Title as a string and populate in the Process Task form Parent Process field. What I'm getting is the Parent Process numeric ID values. So instead of "Parent Process 01, Parent Process 02" I would get "123456789000,123456789001". What is needed to fetch the Title string value?