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

create opportuntiy product line in process builder
I am new to the process builder and want to create a process to evaluate a newly created opportunity. Then based on the opportunity create date criteria, create an opportunity product line record. I have debuged and tested the criteria part and it evalutes to true so I have that part right, just can't seem to get it to create the opportunity product line. Here is a screen shot below of the create a record portion. I can copy the debug log if that will help. Any help will be appreciated!!! This is my first time using the process builder so I could be way off base. Thank you.

1. Please make sure that you populate all the fields which are required (Mentioned in the below link)
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_opportunitylineitem.htm
2. The id you entered for 'Price book entry' (01tG000000LdFg1..) is not price book entry id.(its product id). The price book entry id starts with 01u. You can query the pricebookentry using below query.
select id from pricebookentry
Hope this helps.