Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member182534
Active Participant

This guide provides instructions on how to Complete Task of a SAP BPM Process using BPM API as a Restful Service.


Applies to:

This Document Holds good for all CE 7.3 SP05 onwards. This service can be called from UI5 Screen as an Ajax call.

Please note that from 7.31 SP09 onward you can also use the standard BPM OData service to retrieve task details and complete the task: Custom UIs with the BPM OData Service

Special Thanks to christian.loos.


Step 5 : Create a restful service class file and write a code as shown below or if you are continuing from the document then just copy past the methods only.


import java.io.StringReader;
import java.net.URI;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.xml.sax.InputSource;
import bo.Material;
import bo.MaterialCreation;
import bo.TaskHeader;
import bo.TaskHeaders;
import com.sap.bpm.api.BPMFactory;
import com.sap.bpm.exception.api.BPMException;
import com.sap.bpm.pm.api.ProcessDefinition;
import com.sap.bpm.pm.api.ProcessDefinitionManager;
import com.sap.bpm.pm.api.ProcessStartEvent;
import com.sap.bpm.pm.api.ProcessStartManager;
import com.sap.bpm.tm.api.Status;
import com.sap.bpm.tm.api.TaskAbstract;
import com.sap.bpm.tm.api.TaskDetail;
import com.sap.bpm.tm.api.TaskInstanceManager;
import com.sap.tc.logging.Location;
import commonj.sdo.DataObject;
import commonj.sdo.helper.XMLHelper;
@Path("/MaterialCreationService")
@Produces({MediaType.APPLICATION_XML})
public class MaterialCreationToRestService {
  private static final Location location = Location.getLocation(MaterialCreationToRestService.class);
  private final String PRE_TASK_URI = "bpm://bpm.sap.com/task-instance/";
  @Path("/completeTask/{task-id}")
  @POST
  @Consumes({MediaType.APPLICATION_JSON})
  @Produces({MediaType.APPLICATION_JSON})
  public String completeTask(@PathParam("task-id") String taskInstanceId, Material materialData) throws Exception
    {
    System.err.println("MaterialMaintenanceService -> completeTask Task ID : "+taskInstanceId);
    String log = null;
    try{
    //Retrieve the TaskInstanceManager
    TaskInstanceManager taskInstanceManager = BPMFactory.getTaskInstanceManager();
    taskInstanceId = PRE_TASK_URI + taskInstanceId;
    URI taskInstId = new URI(taskInstanceId);
    //Claim the Task First
    taskInstanceManager.claim(taskInstId);
 
    TaskDetail taskDetails = taskInstanceManager.getTaskDetail(taskInstId);
    DataObject pDataObject = taskDetails.getOutputDataObject();
    setMaterialToDataObject(materialData, pDataObject);
  
  taskInstanceManager.complete(taskInstId, taskDetails.getOutputDataObject());
        System.err.println("DataObject : "+taskDetails.getOutputDataObject());
        System.err.println("Task Completed");
        log = "Task Completed";
    }
    catch (Exception e)
    {
    e.printStackTrace();
    System.err.println(e);
    log = "Task in Exception "+e.getLocalizedMessage();
    }
    return log;
    }
  private void setMaterialToDataObject(Material material, DataObject pDataObject)
  {
  if(material == null || pDataObject == null)
  return;
  pDataObject.set("Material", material.getMaterial());
  pDataObject.set("IndustrySector", material.getIndustrySector());
  pDataObject.set("MaterialType", material.getMaterialType());
  pDataObject.set("Description", material.getDescription());
  }
}



  • The Following code is very important as we need to claim the task first and then set the data to complete the task.

Step 6 & Step 7 is same as mentioned in the document. If you are continuing then you can ignore these steps.


Creating Deploy-able Object & Accessing the methods exposed.


Refer the document to "Creating Deploy-able Object" & "Accessing the methods exposed" as it is the same.


Testing your REST services

You can test the created REST services using the POSTMAN for Chrome or Advanced REST client for Chrome.

3 Comments
Labels in this area