how Create a Button on the Change Request

Ashwaq ALotaibi
Tera Contributor

HI All

please how I can  Create a Button on the Change Request form ‘Update Description’. On click of this button the Description should be updated to the  another text .?

 

1 ACCEPTED SOLUTION

Raghav Sharma24
Giga Patron

1. Create a UI action on change request table with name "Update description".

2. Write below code in the script part:

current.description = "";  add the new description you want to replace.
current.update();
action.setRedirectURL(current);


Please mark the answer correct/helpful accordingly.

View solution in original post

1 REPLY 1

Raghav Sharma24
Giga Patron

1. Create a UI action on change request table with name "Update description".

2. Write below code in the script part:

current.description = "";  add the new description you want to replace.
current.update();
action.setRedirectURL(current);


Please mark the answer correct/helpful accordingly.