filed validation on one table and data pass will be on another table

sushma9
Tera Contributor

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 ?

1 ACCEPTED SOLUTION

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

View solution in original post

9 REPLIES 9

Samaksh Wani
Giga Sage
Giga Sage

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

@Samaksh Wani 

In that case no need of any client script  and glide ajax .Correct me if i am wrong

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

@Samaksh Wani 

Using br   Can i set the url link on the filed in the other table  as well ?