Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
mass delete custom object records in Professional
Use Apex Data loader
Regards,
Magulan D
Salesforce.com certified Force.com Developer.
SFDC Blog
If this post is your solution, kindly mark this as the solution.
Query all the records of the custom object in develeoper console
Example :
List<Custom object> c = new List<custom object>();
c=[select Id, name ....... from custom object ];
delete c;
Execute the above code in the developer console. If u need to query record based on condition give it in where clause in the above query.
Use Apex Data loader
Regards,
Magulan D
Salesforce.com certified Force.com Developer.
SFDC Blog
If this post is your solution, kindly mark this as the solution.
Query all the records of the custom object in develeoper console
Example :
List<Custom object> c = new List<custom object>();
c=[select Id, name ....... from custom object ];
delete c;
Execute the above code in the developer console. If u need to query record based on condition give it in where clause in the above query.