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
Martin S.Martin S. 

Flow get ContactID from Contact by RecordID from Parent Object

Hello,
I try to show a child list on the contact page.
A contact has several vehicles. I want to select one and make some further processing. So I created a related list on the contact page. There you can now click on the vehicle that you want to choose and it opens vehicle-object-detail-page. There I want to have an flow that grabs somehow the ContactID from the contact. With the contact ID I can work further.
But when I start the flow at the vehicle-object-detail-page it only grabs the RecordID of the vehicle. I cant filter in the flow SELECT Name, E-Mail FROM Contact WHERE RecordID = Contact.Vehicle.ID
Can someone help me?
Syed Insha Jawaid 2Syed Insha Jawaid 2
Hi Martin

You can query record in flow and then get the contact Id, as vehicle and contact are related.

Cheers!!!