Using a Custom Object as a Step
Follow these instructions to create and use a custom object as a step. Alternatively, use the Custom Object Wizard in Conga Orchestrate Setup to streamline setting up a custom object as a process object and step.
If the custom process object is from a managed package and therefore has a namespace, add the namespace to the Allowed Namespaces field on the Conga Process Setup page.
Creating a new Visualforce page
In the Developer Console, create a new Visualforce page. Name it something like CustomObjectNameChecklist.
Copy the following and paste it into the new Visualforce Page window:
<apex:page showHeader="false" sidebar="false" standardController="YOUR_CUSTOM_OBJECT__c">
<apex:includeLightning />
<apex:outputPanel rendered="{!YOUR_CUSTOM_OBJECT__c.Checklist__c!=null}">
<div id="pc_checklist" />
</apex:outputPanel>
<script type="text/javascript">
$Lightning.use("FSTR:ChecklistApp", function()
{
$Lightning.createComponent("FSTR:Checklist",
{
recordId : '{!YOUR_CUSTOM_OBJECT__c.Id}'
},
"pc_checklist",
function(cmp) { });
});
</script>
</apex:page>
You can now create process steps using your custom object. You will see the object in the Object Type when creating a list on Create Record steps.