
gaurav p
Individual-
Generating thumbnail…
-
Generating thumbnail…
Photos
-
Ankit Gupta replied to the discussion Different methods for sending data from a salesforce visualforce page to an apex controller? in the forum Salesforce® Discussions 7 years ago
Hi sushant,
You can following ways
- Hidden fields
- Apex Param
- javascript Ajax request
- Add the value in parameter and get in apex controller
-
Ankit Gupta replied to the discussion How can I get the field id's in Salesforce as I need it for URL Hacking? in the forum Salesforce® Discussions 7 years ago
Reply to How can I get the field id's in Salesforce as I need it for URL Hacking?
Hi Ajit,
Try the tooling API in apex to get the field id in apex class. Tooling API support to get field details like id also.
-
Ankit Gupta replied to the discussion How can I get the field id's in Salesforce as I need it for URL Hacking? in the forum Salesforce® Discussions 7 years ago
Reply to How can I get the field id's in Salesforce as I need it for URL Hacking?
Hi Ajit,
Try the tooling API in apex to get the field id in apex class. Tooling API support to get field details like id also.
-
Ankit Gupta replied to the discussion Delete more than 10000 records using script without limit in Salesforce Apex in the forum Salesforce® Discussions 7 years ago
Reply to Delete more than 10000 records using script without limit in Salesforce Apex
Hi Pavan,
If you are using vf page to delete the records. You can use asynchronous call to call apex method and perform the delete in each transaction.
Also you can call action function recursively on the basis of certain condition from oncomplete of action method.
-
Ankit Gupta replied to the discussion Delete more than 10000 records using script without limit in Salesforce Apex in the forum Salesforce® Discussions 7 years ago
Reply to Delete more than 10000 records using script without limit in Salesforce Apex
Hi Pavan,
If you are using vf page to delete the records. You can use asynchronous call to call apex method and perform the delete in each transaction.
Also you can call action function recursively on the basis of certain condition from oncomplete of action method.