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

Populate Picklist Value across related object (after insert and update)
Hello, I'm wondering if it's possible to do this without code.
Objone__c has a lookup relationship with Objtwo__c
Objone__c has an input picklist field called Picklist__c
Objtwo__c has an input picklist field called Picklist_existing__c
When creating a record on Objone__c, where "RecordType" = "X", I need Objone__c.Picklist__c to be populated from a picklist field of the related (selected) Objtwo__c record (Objtwo__c.Picklist_existing__c) after insert and after update.
Is this possible without code?
Objone__c has a lookup relationship with Objtwo__c
Objone__c has an input picklist field called Picklist__c
Objtwo__c has an input picklist field called Picklist_existing__c
When creating a record on Objone__c, where "RecordType" = "X", I need Objone__c.Picklist__c to be populated from a picklist field of the related (selected) Objtwo__c record (Objtwo__c.Picklist_existing__c) after insert and after update.
Is this possible without code?
1. Goto Setup->Create->Workflows & Approvals -> Process builder
2. Click "NEW' and enter the name for the process
3. Select the Objone__c(Transaction) and action as 'Whene a record is created or edited'
4. In the add criteria enter RecordType = 'X'
5. In the action select 'update record' and the chose the object Objone__c(In the example I have used account object)
6. Under the field selection select the your Objone__c.Picklist__c and in the value select the 'Objone__c.ObjectTwo__c.Picklist__c
7. Then activate your process builder
All Answers
1. Goto Setup->Create->Workflows & Approvals -> Process builder
2. Click "NEW' and enter the name for the process
3. Select the Objone__c and action as 'Whene a record is created or edited'
4. In the add criteria enter RecordType = 'X'
5. In the action select 'update record' and the chose the object Objecttwo__c
6. Under the field selection select the your Objtwo__c.Picklist_existing__c and in the value select the 'Objone__c.Picklist__c'
7. Then activate your process builder
To know more about process builder check this link (https://developer.salesforce.com/trailhead/business_process_automation/process_builder)
In actual terms, when creating a Transaction record where RecordType = "Existing Customer", the "Customer Type" picklist field needs to be automatically populated with a picklist value from the selected Customer.
1. Goto Setup->Create->Workflows & Approvals -> Process builder
2. Click "NEW' and enter the name for the process
3. Select the Objone__c(Transaction) and action as 'Whene a record is created or edited'
4. In the add criteria enter RecordType = 'X'
5. In the action select 'update record' and the chose the object Objone__c(In the example I have used account object)
6. Under the field selection select the your Objone__c.Picklist__c and in the value select the 'Objone__c.ObjectTwo__c.Picklist__c
7. Then activate your process builder
In the popup just click on the object name and then click save
Then in the next step, you will be able to select fields from that object