- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 10:35 AM
Hi All,
Is there a possibility where the filed validation on one table and once the validation is done can we pass the data to a filed in other table .
Ex: i am validating a Filed through client script using script include and glide ajax .Once the data is returns from the script include to ajax and validation is done then i need to pass that data to filed in another table . Is it possible ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 11:05 AM
Hello @sushma9
You can send the url link to another field of another table using gliderecord.
gr.field_name = current.url_field;
In this way.
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 10:49 AM
Hello @sushma9
In the Script Include only, you need to check the validation is done, once done you can glide the record of the another table and set the data of current field to another table field.
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 10:55 AM
In that case no need of any client script and glide ajax .Correct me if i am wrong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 10:59 AM
Hello @sushma9
Using Client Script you cannot set the value of other table.
So i would suggest you to use Business Rule instead.
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 11:02 AM
Using br Can i set the url link on the filed in the other table as well ?