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
Nicole Lang 14Nicole Lang 14 

How to use Get Records Flow Element to filter on Record Id that started the flow

Hello, 
I am trying to use data on fields of the record of where I have my flow button (kicks off flow) to use in my flow but I am unable to get that data in those fields when using Get Record Flow Element I am unable to set the ID for the current record. How can I do that? 
Naveen KNNaveen KN
Salesforce Doc:
Flow actions let you pass the value of the record's ID field into the flow, but that's it. If your flow has a Text input variable called recordId, the action passes the record's ID into that variable at runtime. If not, it doesn't and the flow tries to run anyway.

create the variable recordId in the flow which maps to the record id of the updated/created record. and use it wherever needed. 
Nicole Lang 14Nicole Lang 14
Thank you Naveen, is there a link for that Salesforce documentation you can share?