Skip to main content
Megan Hooser (Salesforce) 님이 #Data Management에 질문했습니다
I am making a flow that is deployed manually by a button on the opportunity object. I need to pull some of this information from the opportunity into the record the flow is creating. How can I reference this original record without having to do a lookup screen?
답변 2개
  1. 2016년 10월 11일 오후 6:28
    You can do that by passing the Opportunity Id into the Flow via the custom button URL as explained below:

     

    https://developer.salesforce.com/docs/atlas.en-us.workbook.meta/workbook/flow_6_add_custom_button.htm

     

     

    /flow/Insert_Flow_API_Name?vOpportunityId={!Opportunity.Id}&retURL=/{!Opportunity.Id}

     

    vOpportunityId: Flow variable for storing Opportunity Id

     

    {!Opportunity.Id}: Merge field for Opportunity Id
0/9000