• John Henley
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I have a screen-based flow that users run to search for equipment and update selection/quantity.  At the end of the flow is the record update step, but then the user is presented with the record page and the previous values are displayed. They have to hit Refresh on their browser to see the new values for the updated fields.

I'm currently using this: 
<flow:interview name="First_Screen_Flow" finishLocation="/{!Job__c.Id}">
        <apex:param name="varJobID" value="{!Job__c.Id}"/>
    </flow:interview>

But the finish location doesn't show the record with new values.  How can I refresh the whole page when they click Finish?
I have a screen-based flow that users run to search for equipment and update selection/quantity.  At the end of the flow is the record update step, but then the user is presented with the record page and the previous values are displayed. They have to hit Refresh on their browser to see the new values for the updated fields.

I'm currently using this: 
<flow:interview name="First_Screen_Flow" finishLocation="/{!Job__c.Id}">
        <apex:param name="varJobID" value="{!Job__c.Id}"/>
    </flow:interview>

But the finish location doesn't show the record with new values.  How can I refresh the whole page when they click Finish?
I would like some help with a fairly simple request: I have a process builder setup to run on opportunities. It works fine but only when the record is updated. I would like to have it run every day and execute if a field date on the record is matched to today's date. I don't want to set it to run in the future. Just an everyday event.
I tried forcing the execution with workflow rules updating a date field on the record but it doesn't work when the date is tomorrow or the following date. Nothing happens when the future date comes around.
Is there another trick I'm missing and I can't see a way to trigger this process builder?
Thanks in advance for your help!