Description
Development Team
The project owner is currently the only member of the development team.
(by ankush rao on Mon Nov 19 06:57:10 GMT 2012)
There is no ''Clone '' object,so how can we create like this..
Clone cc=new Clone();
in my apex i get an Error,"Error: Compile Error: Invalid type: Clone"...please give the clear usage of Clone thank you
(by pranay jha on Wed Sep 05 10:02:24 GMT 2012)
When I add
"Clone cc=new Clone();"
in my apex class I get,
"Error: Compile Error: Invalid type: Clone at line 10 column 22"
(by Naveen Vuppu on Thu Sep 15 08:53:09 GMT 2011)
Please share some more examples.Its very use full.
Tags

Force.com's record clone function only clones the record itself without taking into the account of its "detail/child" records. The Super Clone provides both API (can be directly called from your own code) and visual force page UI access to clone the master and detail records in one go. An example of API access:
//clone an account record (id is a0190000001E3JJ) with all related detail records(contact,opportunity...) //note, detailed records to be cloned can be further declared. By default, it takes all child records.
Clone cc=new Clone();
string parentObjAPIName=cc.returnAPIObjectName('a0190000001E3JJ');
Map<string,string> objLabelobjAPI=cc.getAllChildObjNames(parentObjAPIName,'a0190000001E3JJ');
string clondedParentRecordID=cc.startsClone('a0190000001E3JJ', objLabelobjAPI.values());
That's it, totally 4 lines code.
To use it in a Visualforce page, all you need to do is to pass the master record id to the URL:
yoursalesforce instance.salesforce.com/apex/clone?id=salesforce master record id, e.g:
https://ap1.visual.force.com/apex/clone?id=00190000004ZlVc