Public Profile
  • Unable to create/write "canSubmitToWorkflow" method (or) Standard override methods on table extensions in D365O

    I need to create a workflow for which "canSubmitToWorkflow" method needs to be created on standard table which doesn't have canSubmitToWorkflow standard method but development is to be done using extensions.

    In table extensions we can't override standard methods which in-turn can't create "canSubmitToWorkflow" method.

     

    Error message is :-

    "cannot define an extension method "canSubmitToWorkflow" in extension class "custTable_Extension" targeting type "custTable" because the type already defines a method with same name.

    As per above error & my understanding, "canSubmitToWorkflow" method is an override/standard method,

    by default every table consists some set of override methods and above method belongs to same.

    Even i have seen for events which are listed for table extensions as a separate node(Events)and i haven't find any event handler for "canSubmitToWorkflow" method as we have for others(onUpdated,onUpdating...etc)