- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 01:02 AM - edited 12-15-2022 01:04 AM
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 .?
Solved! Go to Solution.
- Labels:
-
Change Request
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 01:14 AM
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.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 01:14 AM
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.
Raghav
MVP 2023