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 06:13 AM
Hi @Vaishnavi35 ,
You cannot dot walk for current and set the value, instead Gliderecord to that table and update the field.
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 09:24 AM
Hi,
I am writing this in Record Producer itself. For "cost center" its working fine.
Thanks,
Vaishnavi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 06:17 AM
Hi @Vaishnavi35 ,
You have to do something like this:
var demandGR = current.idea.demand.getRefRecord();
demandGR.primary_program= producer.u_program;
demandGR.update();
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:29 AM
Is this Business rule?? Where do I write this script?
Thank you!