function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Tina Cancino 16Tina Cancino 16 

Custom Button Question

I have a requirement that requires the ability to click a button from the opps and the button should redirect the end user to another system homepage.

While I've read several articles, I'm still unsure if the right solution is HTTP post with Parameters and/or SOAP? 

Or is it simply Java?
Ashish KumarAshish Kumar
Hi Tina,

You can create a custom button and execute below javascript to redirect to specific link as per your requirement.
After creating the button, add the button to the page layout. 
window.location.href = "https://www.google.com";

Let me know if need anything else.

Regards,