Record Producer dot walking does not work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 05:57 AM - edited 06-03-2024 09:27 AM
Hi,
I have created Program variable and added choices to it.
I have added Program field dot walking from Demand form onto the Idea form. Whatever value I choose on the variable should go to the idea form field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 11:12 AM
Hi @Vaishnavi35
This is not a Business Rule this is record producer script.
If you find my response helpful, please consider marking it as the 'Accepted Solution' and giving it a 'Helpful' rating. Your feedback not only supports the community but also encourages me to continue providing valuable assistance.
Thanks,
Amitoj Wadhera

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 09:44 AM
You can't assign a value using dot walk.
current.idea.demand.primary_program = producer.u_program
If primary_program is a field on your current table, you can do current.primary_program = producer.u_program;
But you can't dot walk to a field which is in demand table and store the value of program there.
If primary_program is a field in demand table, you need to query the demand table and and set the value.
Please mark this response as correct or helpful if it assisted you with your question.