- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2024 03:47 AM
Hello everyone.
i got a requirement to save a employee record when user click on report UI Action.
i have create a ui action on employee table it contains a link to navigate to reports.
but here i want functionality to save records before navigating to reports.
for example:- user fill the data in employee table columns and click the report button then the form employee record saved and also user will need to navigate to reports.
simply one button to save record and navigate to report.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2024 04:24 AM
You can write below logic in your client side UI action
g_form.save();
top.window.location = 'url'; // provide your url here
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2024 04:24 AM
You can write below logic in your client side UI action
g_form.save();
top.window.location = 'url'; // provide your url here
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thank