-
Having trouble running a workflow from a Domo Brick
There's a brick called Workflow Start Form that I'm basing my implementation on, primarily the function const startWorkflowWithParams = (alias, params) => { var startURL = '/domo/workflow/v1/models/' + alias + '/start'; domo.post(startURL, params).then(data => { console.log(data);…
-
Getting Buzz message when a form submitted
Hi all, I created a form in an app to get feedbacks from the users, in order to improve the app as they want. As soon as any user fill and submit the form, the data will get autogenerated in a data provider Now I want to get a Buzz message when a form has been submitted, so we are not missing any feedback. But I don't know…
-
WORKFLOWS Q&A from Domopalooza
The product team enjoyed answering questions from the audience during the final session at Domopalooza. Below you will find the answers to all questions related to Workflows (including those that weren't mentioned on stage). Q: Can I use a WorkFlow to change a default date variable within a Domo dashboard? A: Yes, your…
-
Domopalooza Workflows Feature Release
We are excited to announce new Workflows enhancements. Workflows is a low-code logic-building tool that allows you to streamline data-driven processes and spend less time on complex business activities. With Workflows, you can automate routine tasks to increase operational efficiency; orchestrate steps and actions; and…
-
Appended datasets, output displays alternative blended datasets
I appended 5+ datasets, technically I should have all rows appended one another the other without overlapping. Some of my rows in the appended dataset looks overlapped with the rows from other datasets. what could be the possible reason for this?
-
Workflow with Form and Writeback
Hello, My use case is as follows: Create a workflow that allows a user to go through a list of items with "Undefined" as their value under the "Designation" column. For each undefined item, the user should be prompted with a form that allows them to see the identifier for the item and select either "Capitalization" or…
-
Using Email in Jupyter Workspace - Python Scripts
Hi All, I was trying to trigger and send emails from the Jupyter workspaces. I have the list of emails to whom I need to send and I also have the subject and body of the email ready, but I'm not able to connect to the DOMO Notifications Email which is being used by Card alerts and Workflows to send out emails. Is there any…
-
Can you use workflows to automatically manage workbench?
Our workbench jobs have a habit of getting hung up when updating making our data fall behind and our end users annoyed. I've already reached out to domo support to help with this issue but in the meantime I have workbench open and I manually update the jobs that miss their scheduled updates. Seeing how this is pretty…
-
Can I use a workflow to change the default date on a dashboard once a month?
Our sales dashboards by default show the current month, except on the 1st of every month. When a user gets to the dashboard it's all blank because we don't have data for the 1st yet. I want to find a way via a workflow to change the default date to the previous month on select dashboards on the first of the month, and then…
-
Workflows for Domo Everywhere
I've got code that I've been suing successfully for all types of Domo Everywhere related tasks. Before we make these GLOBAL packages and functions that are available to everyone, we'd love to have a few more people using them. If you want to use Workflows to automate any Domo Everywhere related tasks, please let me know.…
-
How to Execute a Workflow From Another Workflow?
I have a workflow that does some data validation and outputs some rows of data to a result object. I want to take that result object and execute a second separate workflow that accepts that result object as an input parameter. But I can't find any documentation on executing a workflow from a workflow and passing around…
-
Pass Variables into a MagicETL from Workflows.
With the new workflow features on the horizon, I think it would be immeasurably valuable to pass output variables from workflows into Magic ETLs since workflows can execute ETLs already. For example: An 'audit' workflow is triggered that evaluates a dataset for various criteria. As part of the evaluation it sets output…
-
How to simply assign a value from one variable to another?
Hey all, Looking to execute actions for a list of cards (around 700). l have already built a query that returns a list variable with the object IDs I need. I am now trying to get the length of the list in a variable to set up a loop. I know there are several functions availabe in workflows, but I have not found one that…