1 / 7

The first robot creates the link to the details page.

Robots at the beginning of the workflow create the links as well as any discussion topics or postings.

andral
Download Presentation

The first robot creates the link to the details page.

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Robots at the beginning of the workflow create the links as well as any discussion topics or postings. Depending on your process, you may also need to update the link to the details page with the start and complete transitions for each activity. The reason being that as the object is revised, the link may get out of date.

  2. Two process level variables are necessary to store the links to the details page and the discussion forum.

  3. The first robot creates the link to the details page. String pboid = primaryBusinessObject.toString(); wt.httpgw.URLFactory urlFactory = new wt.httpgw.URLFactory(); PBOLink = wt.httpgw.GatewayServletHelper.buildAuthenticatedHREF(urlFactory,"wt.enterprise.URLProcessor","URLTemplateAction","action=ObjProps&appId=PDMLink&oid="+pboid); System.out.println("Resolved the link: \n"+PBOLink);

  4. The second robot creates the link to the discussion forum. wt.util.WTProperties wtProperties = wt.util.WTProperties.getLocalProperties(); String wtCodebase = wtProperties.getProperty("wt.server.codebase", ""); DiscussURL = wtCodebase+"/netmarkets/jsp/forum/discuss.jsp?oid=object~"+primaryBusinessObject;

  5. Our process requires that certain topics and postings get created automatically. This is one example of an expression we use to accomplish this.

  6. The variables must also be created at the activity level and must be initialized from the process level variable as shown.

  7. Once you have your variables setup correctly, you can throw those variables into an IFrame in the Instructions of the activity as shown here.

More Related