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
sri sfdcsri sfdc 

javascript remoting values to save in custom object

hi all,

 can any one help me how to save 'rpmdata' values in RPM__C custom object

public class JSRemotingFormSubmitController {
    
 public JSRemotingFormSubmitController(){}

    @RemoteAction
   public static boolean saveform(Map<string,string> rpmdata){
       System.debug('***From Remote saveform');
        system.debug(rpmdata);
        return true;  
        
    }
   

}