I am relatively new to Apex and trigger writing. Here is what I'm trying to accomplish:
Is it possible to copy a record in a custom object into a new record that was created within the same object? In my case, when an opportunity is set to "close won" I need to create a new record in the custom object called Project__c. But the kicker is there is an existing record named proj1 that contains default data that needs to be copied into every new record that goes into the object Project__c.
I know how to create a new record after update on Opportunity, but I'm unsure how to grab the record proj1 out of the object Project__c and copy it. Any help would be great!