-1

here's a picture of what it looks likeI am trying to write an automated action in odoo 15 to create next activity that when triggered sends a reminder to a generic user that it gets from the record but it is not finding the user, i think i wrote the syntax wrong so would really appreciate some input

I tried to write the field name of the generic user and I was expecting it to send a reminder for the provided generic user

Daniel b
  • 1
  • 2
  • Welcome to stackoverflow. Please checkout the [tour], [editing help](https://stackoverflow.com/editing-help) and [ask]. Please share the code that you have written. For more details please see [mre] – Marcelo Paco Apr 06 '23 at 06:20
  • Please add field technical name only. record.technical_name is invalid syntax. For ex: use request_owner_id only. – Himanshu Sharma Apr 06 '23 at 10:18

1 Answers1

0

without more info it should be something like

record.user_id.id

With the user_id being the user you want to send the reminder to.

apexprogramming
  • 403
  • 2
  • 14