Then go to “Context Menu Maintenance” and create or search for “Task.TaskID” or “TaskMast.TaskID”. If you have to create it, create it and then save the form. Then Create a new Context Menu Item.
Thanks @masuphiber for your reply.
I was able to launch Task List from a BAQ column but it was empty.
I still needed to select the right Workforce and corresponding task.
By right clicking on Case, Case entry opens and I can complete a task there.
I wanted to know if by right clicking Task Description (or Task sequence/ ID etc.), Task List can be opened with the selected task.
On the dashboard where we did the Task completion, there is a button to launch the credit manager in the correct company with the selected bill to. The code for the button is in a customization of the dashboard itself. If there’s a way to open the Task List with the correct task, I would guess you could do it with something similar.
var othsession = Ice.Lib.Framework.FormFunctions.SessionCache.GetCachedSession(session.AppServer, OrderCompany.Text, "MfgSys");
LaunchFormOptions launchObject = new LaunchFormOptions()
{
IsModal = false,
SuppressFormSearch = true,
ValueIn = OrderBillTo.Text,
};
var othlaunch = new ILauncher(othsession);
ProcessCaller.LaunchForm(othlaunch, "ARGO3008", launchObject);```