- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2018 10:43 AM
Has anyone been able to link a request tasks to a change request similar as showing in this steps. Link changes to a project task I am able to see it creates a change from the task but I cant get the task to show up linked on the change request?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2018 09:58 AM
Thats great.. You found it. But it is referencing the Catalog Task instead of Change Request or Task table, while you in the script you are trying to store the change request. Something is wrong with the way it is implemented.
You also need to correct this line in the script.
link.eislinked_task = changeRequest.insert();
It should be
link.u_eis_linked_task = changeRequest.insert();
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 02:31 PM
eislinked_task is a field and not a related list. Search for a field which has name eislinked_task or may be Eis Linked Task. The one you have sent is a related list.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 02:38 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 02:47 PM
In the change_request form, right click on the header and open the dictionary.
Then search for the field with name eislinked_task. It can have a different label, which is why you dont see it in the Form Layout.
Also make sure, you are checking on the form layout and not related list.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 03:00 PM
There is no eislinked_task dictionary item on the table Change Request, what I am trying to do I mimic the project task > change request solution that does that:
There is no link task for project on the change_request table either. I think the linked occurs on the project task
I still don't see any eislinked_task or linked task under the task for the request so I must be doing something different.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 03:06 PM
My bad. I got confused.
In the form for u_eis_task_link
Add Parent. This will have the Task Number
Add eislinked_task. This will have the change request number
If the above two are there, then we will create a Relationship record in Relationship table
Please mark this response as correct or helpful if it assisted you with your question.