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
Ben ReaderBen Reader 

Atomate a program execution in Salesforce

I wrote a Java code (using wsdl file in library) that retreive Data from a custom object and send them to a software.
The program works find but need to be lauch manually.

I wonder if there is a way to create an automation process , for example when statut is aproved lauch my java code.
HitHit
HI,

You can invoke Apex thru various way. In this case might you want to write trigger action in status field update.

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_invoking.htm

Thanks.
Ben ReaderBen Reader
Thank you very much !