Comments
-
So you just want a function that will create a new task in a project?
-
Larry, it doesn't have anything to do with the workflow. If you were to edit the webform and add a row, you'd be in the same boat. The workflow uses the same API end point. The dataset is stuck at indexing. This is an adrenaline thing. You can try manually indexing the dataset via the API (easiest is probably with the…
-
The API call to the workflow status should return a real time status of the dataflow. The dataflows status isn't cached or stored anywhere…
-
The thing is, it has no idea what you're going to have in there. This isn't a limitation I think we can work on, becuase of the nature of an object it can contain anything…and there is no object for us to inspect/understand until you've passed the object in to the workflow. That's why we allow you to edit an object to…
-
If the dataset is stuck on indexing, it will resolve itself…that isn't related to the workflow or anything like that. It's a Domo Adrenaline issue. It should be infrequent and should resolve itself over time. Is it still hung up here? The indexing step is where Adrenaline processes the append chain and stitches everything…
-
To elaborate, the reason you can't select comment is because that is looking at your TEXT variables, to pass the value from that in. You don't have an appropriate variable to pass to the property object, so hit custom and just type comment in.
-
No - just do Custom and type in comment. And your value is correct, except you don't need to encapsulate everything in quotes. Also, use the "Insert Variable" instead of typing them out yourself that way. I wish we could shortcode them like that, but we can't right now. Use "Insert Variable" to plug it in.
-
Good stuff. Glad you got it up and running.
-
So your workflow will have a required start parameters that is an object, and that will get written to a variable. The object will get passed in the call to start the workflow. Then you'll use the "get Object from Object" function to remove that comment object. That will create a second variable that is an object called…
-
So the start parameter for your workflow should be an object, that looks like that JIRA payload. It will have the following children: issue key (string) comment (object) summary (string) project (string) I would probably use a delimiter other than , because , is likely to appear in the user input data. You'll need a step…
-
1 - That works. 2 - No, they do not. It will write them to whatever dataset you instruct it to. 3 - You could have a function make a UUID and then include it in what you pass to the dataset. You can also grab metadata from the workflow, such as who started the workflow and include it in what you write to the dataset.
-
Here's a screenshot if the inputs
-
Here's the function.
-
So it's a statement. I'll make sure engineering sees this. If you have any questions, let me know.
-
Last thing I will say, is that AppDB is often easier for things that you might want to update. So if you're capturing these and logging them to exist forever more, an append to a dataset is great. If you want to update those values later, LMK and we can talk about AppDB.
-
Typically folks will you use the string builder to create their list of values. You can select CUSTOM and then insert variables. {{variable1}} | {{variable2}} | {{variable3}} Then pass a pipe as the delimiter. Hopefully that makes sense.
-
Append to dataset looks for a delimiter, a dataset and values. The dataset is what you want to append to. The values is a list of values to write to a dataset. If your dataset has 5 columns, you need to write 5 values. The delimter is to allow you to stipulate what seperates your values. Comma is default, but sometimes…
-
Is there a question I’m missing here, or is this just a general statement?
-
John, sorry you’re so frustrated. I agree with you that it should be easier to see the user who completed a task. I have two solutions for you. 1 - I can share a function you can run right after your user task that will tell you. 2 - there’s a DomoStats report that is either available now, or very soon (need to double…
-
It looks like something is expecting a response that it is not getting. I'd open a ticket with support, and share that TOE. I will see if I can get someone from Domo Engineering to look at this for you.
-
I replied to your other thread on the same topic.
-
Create the workflow that has date, line, crew id, type and duration as inputs. Have the workflow include a user task that prompts for a reason. Create an alert and tie an alert action to start the workflow. If you go through the "Getting Started with Workflows" training at learndomo.domo.com then it covers off on all of…
-
Yeah, we could process and parse images from S3, SFTP, etc… We've also got some new stuff getting announced tomorrow that will be an unlock here…
-
John, you can put HTML in the body and it will render it wonderfully. As far as the attachment goes, that’s the FileID for a document stored in our FilesAPI. The FilesAPI is well documented at developer.domo.com. The use of it in this function is not, and I apologize. If you have a form that includes an attachment, what’s…
-
Beau, codeEngine doesn't support "PATCH" at this time, and the PRODUCT api end point to update parameters on user profiles leverages a patch. That said, the OAuth API will update a user leveraging a PUT, which codeEngine supports. I know of customers who have used this to accomplish what you're after:…
-
Nate - thanks for sharing your experience. I will make sure that engineering sees this.
-
I'm not exactly clear on what you're trying to do. You shouldn't need to do any authentication. Are you trying to add a user to a group? And you have that users ID stored in a person variable in your workflow?
-
The add user to group is an Okta function to add someone to a group in Okta. The others are for Domo Groups.
-
Are you saying the status variable was updated by the "Get Dataflow Execution Status" step? Can you post a screenshot of what shows up for the inputs and outputs for that step, please?
-
Send me a PM.