Hi ,
I have created a custom workflowtype and I want to use the custom workflow type in the CustTable form . But the custTable form already have the WorkflowType property filled with CustTableChangeProposalWorkflow

Only If I add my workflow type in the workflowtype property of the form I can able to display my workflowtype in the List of Workflows in AccountsReceivable Module

Even In the Workflow Category I have mentioned as AccountsReceivable Module.Still it doesnt list here .
[FormEventHandler(formStr(CustTable), FormEventType::Initializing)]
public static void CustTable_OnInitializing(xFormRun sender, FormEventArgs e)
{
FormRun custTable = sender;
FormBuildDesign CustTableDesign = custTable.form().design();
CustTableDesign.workflowEnabled(true);
CustTableDesign.workflowDatasource(tableStr(CustTable));
CustTableDesign.workflowType(workflowTypeStr(CustTableWF));
}
I have tried this code to add my custom workflow type to the form . But still I am unable to see in the List of WorkflowTypes .
Is it recommended to create a custom workflow for the CustTable form or can I initialize my custom workflow to the custTable form in any other way ?