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
ryepesryepes 

Create an account button

Would like to create a button on the case object that will create a person account off the standard fields of the case. I would also like to check and make sure that the person account does not exist first before allowing to create.

Navatar_DbSupNavatar_DbSup

Hi,


You have to simply create a custom button and select action as JavaScript. Now by using JavaScript you can directly access the method define inside the global class. Please go through below code as reference: Path for creating custom button on Case object click on your name -> setup -> customize ->case -> click on custom button and links.

 

///////////////// Global Class///////////////////////////////////
global class MyTest
{
WebService static integer addNumbers(integer numOne, integer numTwo)
{
return numOne + numTwo;
}
}

 

////////////////////////// JavaScipt Code //////////////////////////
{!REQUIRESCRIPT("/soap/ajax/10.0/connection.js")}
{!REQUIRESCRIPT("/soap/ajax/10.0/apex.js")}
var myvar = sforce.apex.execute("yourClass","addNumbers", {numOne:4,numTwo:5}");
window.alert(myvar);

sfdcttslsfdcttsl

hi ,

 

I have a scenario same like the one which is mentioned in the post.

 

How to write a test method for the method written in class mentioned here.Please suggest me the approach.