webMethods

webMethods

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

Has Anybody written code to get Task Comments

  • 1.  Has Anybody written code to get Task Comments

    Posted Fri June 10, 2011 05:14 PM

    Hello,

    Has anybody written code to get the Task Comments that we enter for a Task in MWS.

    Did anybody used the following method: TaskCommentsListProvider to get the Task Comments.

    Thanks,
    Priyatham Porika


    #MWS-CAF-Task-Engine
    #webMethods-BPMS
    #webMethods


  • 2.  RE: Has Anybody written code to get Task Comments

    Posted Mon June 13, 2011 08:51 PM

    Here’s a trivial code snippet that might get you started:

    TaskCommentsListProvider tclp = new TaskCommentsListProvider(); 
    tclp.setContainerID(getTask1().getTaskID()); 
    tclp.getCommentsList();

    Hope this helps.
    –mark


    #webMethods
    #MWS-CAF-Task-Engine
    #webMethods-BPMS