function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
anandanandanandanand 

Urgent Needed:how to get opportunity products into my related list custom object

how to get opportunity products into my related list custom object

 

For adding particular products in opportunity products related list alternatively tat appropriate products added into another related list custom object.

 

Please help:is it possible

b-Forceb-Force
As per my understanding your requirement is as like,

when you will add some products to Opportunity,...you want same product information in some other custom object

if yes

then try something below

 

Create custom object with Opportunity lookup and Fields to Hold products information

 

define trigger on OpportunityLineItem

 

trigger <name> on OpportunityLineItem (after insert,after update,after delete)

{
//insert/update  record of custom object  on insert or update

//delete custom object record when delete

}

 hope this will help you

Thanks,

Bala