You need to sign in to do that
Don't have an account?

Insert a custom object from Accounts into Tasks
I am trying to insert a custom object from accounts, (in this case it is our prospects' current suppliers) into tasks. That way, when our sales people pull up their tasks as they are making calls, they will automatically see who the current supplier is without having to look at the account. I am new to salesforce but what I have gathered is that I need to create a trigger and use Apex? Help!
because those are two separate animals...
From the description, it looks like you just want one field from Account object to show up under tasks ..
If this is so, can you try creating a custom lookup field under Activities, then a seperate formula field will be able to automatically let you add Supplier Name on Tasks.
Tasks and Events are activity types.
You will be able to add the custom formula field to the tasks ( and even Evenets layout).
So everytime a task is created, the supplier name from account object will get inserted to the task automatically.
That I think should solve your need.
Setup the lookup field to the account object first.
Make sure to add it to the Tasks layout.
Once you have the lookup, then you should be able to setup another field using formula for Supplier Name.
This will trigger the formula to bring over "Supplier Name"
The only drawback is that your users will have to lookup the account to which this task is related everytime they create a task.
And I am certain, there will be a "Related To" field aleready showing this account info.
So on your UI, you will have two fields showing the same value.
But atleast you won't have to code anything.
Hope this helps in some way.
Best regards