Business Process Library Lookup

Hi,

I’m working on a project in Creatio Freedom UI and need some guidance on the following:

1. How to Display a Dropdown of All Business Processes Within a Form Page?

I’d like to add a field in a list that displays a dropdown containing all available business processes. I've tried creating a lookup using VwProcessLib but it throughs an error. Has anyone successfully implemented this? What would be the best approach?

2. How to Create a Button to Add a New Business Process in a Form Page?

I want to add a button that allows users to create a new business process directly from a form page. Ideally, clicking the button would open the Process Designer to start configuring a new process. What’s the best way to do this in Freedom UI?

Any insights, step-by-step guidance, or code snippets would be greatly appreciated! Thanks in advance for your help!

Like 0

Like

4 comments

Re #1: I've been able to use VwProcessLib for a lookup of processes successfully (since it's a view I check the "Do not control integrity" option for the lookup). What type of error are you getting?

Re #2: You can call the following: 

Terrasoft.ProcessModuleUtilities.showProcessSchemaDesigner()

Ryan

Thanks for the suggestion! Using VwProcessLib and enabling 'Do not control integrity' worked perfectly. The issue is resolved now—really appreciate your help!
 

As for the second question, I'm new to creatio so I was wondering where I would add the line: Terrasoft.ProcessModuleUtilities.showProcessSchemaDesigner()

Anjali,

That is just Javascript code. You'd add that where ever you're wanting to launch the new process window. I assume you'd be adding a button somewhere, the code that runs on the click of that button would execute that code. If you're using a Freedom UI page, you can see how to wire up the click event of a button here: https://customerfx.com/article/adding-a-button-to-execute-custom-code-on-a-creatio-freedom-ui-page/

Ryan

Thank you!

Show all comments