link request task to change request

osvaldo2
Kilo Contributor

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?

1 ACCEPTED SOLUTION

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.

View solution in original post

29 REPLIES 29

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.

odd when I go to configure form layout that is the only thing I see:



find_real_file.png


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.

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:





find_real_file.png


find_real_file.png





find_real_file.png



There is no link task for project on the change_request table either. I think the linked occurs on the project task





find_real_file.png




I still don't see any eislinked_task or linked task under the task for the request so I must be doing something different.


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.