Advanced Workflow Management

You can open the Project Management form for any business object that supports stage gate action set workflows.

  • To display the Project Management form for the Project symbol, specify the name of the object. You can also specify the name of the object and the WIP ID. For these examples, the name of the object is Project1 and the WIP ID is 2237.
    
    Dim retVal as Long = StartForm("FRMPROJECTMGMT", "PROJECT1")
    Dim retVal as Long = StartForm("FRMPROJECTMGMT", "PROJECT1", “2237”)
    
    
  • To display the Project Management form for a symbol other than Project, you must specify the symbol itself as the final argument. Add a semi-colon before the symbol. The WIP ID is optional.

    In this example, the Project Management form displays the Item that is named Item 1, along with WIP ID 2242.

    
    Dim retVal as Long = StartForm("FRMPROJECTMGMT", "ITEM1", “2242;ITEM”)
    

    To show the most recent WIP ID, omit the WIP ID from the argument. Remember to add the semi-colon before the symbol.

    
    Dim retVal as Long = StartForm("FRMPROJECTMGMT", "ITEM1", “;ITEM”)