Trigger a task via an action

Hi folks

I would like to trigger a pdf on change of a column, via a standard 'on update' bot, but I can't get the column to be editable, see below. I can't tell why, as it's not ref'd in sub-tables, it's not a key, it's not a label. If you can answer that, great.

Chris_Bean1_0-1706536011336.png

Hi folks

I would like to trigger a pdf on change of a column, via a standard 'on update' bot, but I can't get the column to be editable, see below. I can't tell why, as it's not ref'd in sub-tables, it's not a key, it's not a label. If you can answer that, great.

Chris_Bean1_1-1706536012840.png

 

So in the meantime I'm thinking ok, if a user makes a change in the database (excel in this case, I know, I know, they should be using the app only but client's old habits die hard), they can see that change reflected in the app, then manually generate the pdf to reflect that change. However, the actions that I can set can't be linked to an existing task. 

Is there any way to do this? The 'send email' action doesn't allow for attaching a pdf. 

Thanks in advance! 

Chris

 

So in the meantime I'm thinking ok, if a user makes a change in the database (excel in this case, I know, I know, they should be using the app only but client's old habits die hard), they can see that change reflected in the app, then manually generate the pdf to reflect that change. However, the actions that I can set can't be linked to an existing task. 

Is there any way to do this? The 'send email' action doesn't allow for attaching a pdf. 

Thanks in advance! 

Chris

0 6 92
6 REPLIES 6


@Chris_Bean1 wrote:

The 'send email' action doesn't allow for attaching a pdf. 


 

If you configure the send email task from a bot then you can do an attachment. As you already identified, old habits are hard to break. You are correct that the 'Action' of sending an email only opens your default email provider. You might want to look if you can include the PDF in in the body portion of the email by including it like this [DocumentColumn]. I have not tried it this way, so no guarantees this works.

In regard to the column not being editable, take a screenshot of the actual column settings rather than the table column view.

Ok - here are the screenshots of the editor... 

Chris_Bean1_0-1706542439420.png

 

Chris_Bean1_1-1706542472209.pngChris_Bean1_2-1706542496569.png

posting the images in separate posts as it doesn't seem to like screenshots... 

Is this column part of a Computed Key? That might make it not editable

Nothing obvious from the column settings that would make it not editable. But as the other commenter pointed out, there are other things that might make it uneditable. Also, I am uncertain if settings within the Excel sheet might also prevent the column from being edited. Does it blank out the column in the Form?

For the uneditable column, I'm not sure which column you're referring to, but the only thing I see that would make a column not editable is the Form Number (?) column has a Formula in it, which would cause it to not be editable. If you're referring to the First Name, is it part of a [_ComputedKey]? if so, that would explain why it is not editable.

If you're wanting to send emails with attachments on edits, you'd want to do an Automation. Normally I would create a [trigger] column that I write UTCNOW() to, and then run an automation with the condition

AND(ISNOTBLANK([trigger]),[_THISROW_BEFORE].[trigger]<>[_THISROW_AFTER].[trigger])

to send an email. You should be able to add attachments from that automation.

Top Labels in this Space