<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Create Breadcrumb Or Chevron Control in Salesforce Flow	</title>
	<atom:link href="https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/</link>
	<description>AI, Salesforce, ServiceNow &#38; Enterprise Tech Guides</description>
	<lastBuildDate>Thu, 31 May 2018 18:23:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: stuart		</title>
		<link>https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-4435</link>

		<dc:creator><![CDATA[stuart]]></dc:creator>
		<pubDate>Thu, 31 May 2018 18:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.jitendrazaa.com/blog/?p=6315#comment-4435</guid>

					<description><![CDATA[There was some missing info.  This is my update to the blog:
Steps to Reproduce:
 In setup go to Static Resources.  Add the zip from the url https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/ 
Note:  the image zip file url is https://www.jitendrazaa.com/blog/wp-content/uploads/2017/10/ChevronImages.zip
Name the resource Chevron
Once uploaded Click on the zip.  You will see View File as a Link.  Right-click and Select Copy Link Address:
	https://usnassf-dev-ed--c.visualforce.com/resource/1527763586000/Chevron?isdtp=p1

	1527763586000 represents the ID of the zip:  

Create a constant called chevronZipID with value of 1527763586000 

Go to your Flow.  
Create four stages. Name them stage 1, stage 2, stage 3
NOTE:  Set each stage  active	
Create a variable called stepNumber with the default value to 0.
Create three screens.  
On the first screen add a display enter the text.  The image contains a link which sets the stepNumber parameter.

Note:  There must be No Whitespace:
&lt;a href=&quot;/flow/{!flowName}?stepNumber=1&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=2&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=3&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;

On the first screen add a display enter the text:

&lt;a href=&quot;/flow/{!flowName}?stepNumber=1&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=2&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=3&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;

On the third screen add a display Field and enter the following default value:

&lt;a href=&quot;/flow/{!flowName}?stepNumber=1&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=2&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/flow/{!flowName}?stepNumber=3&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;

You can flow through the flow using the default buttons.  However, you can also click on the different step images of the flow.   

	Decision Element 1:  Checks stepNumber.
If 1 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_1}  And a flow to Screen 1 
		


Else go to Decision Element 2
Decision Element 2:  Checks stepNumber.
If 2 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_2}   And a flow to Screen 2  
Else go to  Decision Element 3
Decision Element 3:  Checks stepNumber.
If 3 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_3}   And a flow to Screen 3  
Else go to Assignment   (Set {!$Flow.CurrentStage} = {!stage_1}  And a flow to Screen 1 
	Stage 4:  After Screen 3 there is one more Screen.  This screen shows a summary. 
Create an Assignment (after screen 3) that assigns the current stage to (Set {!$Flow.CurrentStage} = {!stage_4}  And a flow to Screen 4. 
Create a Screen with a summary of the info gathered.
 
Why a Screen 4?  Well, if the user clicked on the image, somehow this broke the Flow.  The third Screen did not refresh properly, so adding a fourth screen allowed for the flow to end naturally:]]></description>
			<content:encoded><![CDATA[<p>There was some missing info.  This is my update to the blog:<br />
Steps to Reproduce:<br />
 In setup go to Static Resources.  Add the zip from the url <a href="https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/" rel="ugc">https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/</a><br />
Note:  the image zip file url is <a href="https://www.jitendrazaa.com/blog/wp-content/uploads/2017/10/ChevronImages.zip" rel="ugc">https://www.jitendrazaa.com/blog/wp-content/uploads/2017/10/ChevronImages.zip</a><br />
Name the resource Chevron<br />
Once uploaded Click on the zip.  You will see View File as a Link.  Right-click and Select Copy Link Address:<br />
	<a href="https://usnassf-dev-ed--c.visualforce.com/resource/1527763586000/Chevron?isdtp=p1" rel="nofollow ugc">https://usnassf-dev-ed&#8211;c.visualforce.com/resource/1527763586000/Chevron?isdtp=p1</a></p>
<p>	1527763586000 represents the ID of the zip:  </p>
<p>Create a constant called chevronZipID with value of 1527763586000 </p>
<p>Go to your Flow.<br />
Create four stages. Name them stage 1, stage 2, stage 3<br />
NOTE:  Set each stage  active<br />
Create a variable called stepNumber with the default value to 0.<br />
Create three screens.<br />
On the first screen add a display enter the text.  The image contains a link which sets the stepNumber parameter.</p>
<p>Note:  There must be No Whitespace:<br />
<a href="/flow/{!flowName}?stepNumber=1" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=2" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=3" rel="nofollow"></a></p>
<p>On the first screen add a display enter the text:</p>
<p><a href="/flow/{!flowName}?stepNumber=1" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=2" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=3" rel="nofollow"></a></p>
<p>On the third screen add a display Field and enter the following default value:</p>
<p><a href="/flow/{!flowName}?stepNumber=1" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=2" rel="nofollow"></a><a href="/flow/{!flowName}?stepNumber=3" rel="nofollow"></a></p>
<p>You can flow through the flow using the default buttons.  However, you can also click on the different step images of the flow.   </p>
<p>	Decision Element 1:  Checks stepNumber.<br />
If 1 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_1}  And a flow to Screen 1 </p>
<p>Else go to Decision Element 2<br />
Decision Element 2:  Checks stepNumber.<br />
If 2 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_2}   And a flow to Screen 2<br />
Else go to  Decision Element 3<br />
Decision Element 3:  Checks stepNumber.<br />
If 3 go to Assignment (Set {!$Flow.CurrentStage} = {!stage_3}   And a flow to Screen 3<br />
Else go to Assignment   (Set {!$Flow.CurrentStage} = {!stage_1}  And a flow to Screen 1<br />
	Stage 4:  After Screen 3 there is one more Screen.  This screen shows a summary.<br />
Create an Assignment (after screen 3) that assigns the current stage to (Set {!$Flow.CurrentStage} = {!stage_4}  And a flow to Screen 4.<br />
Create a Screen with a summary of the info gathered.</p>
<p>Why a Screen 4?  Well, if the user clicked on the image, somehow this broke the Flow.  The third Screen did not refresh properly, so adding a fourth screen allowed for the flow to end naturally:</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: stuart		</title>
		<link>https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-4433</link>

		<dc:creator><![CDATA[stuart]]></dc:creator>
		<pubDate>Wed, 30 May 2018 18:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.jitendrazaa.com/blog/?p=6315#comment-4433</guid>

					<description><![CDATA[This would be a great post if you could add some information that would make it possible to re-create.
1. Where exactly are files uploaded?  In setup or in the Salesforce Files object?
2.  How do you determine the staticResourceID etc of the images]]></description>
			<content:encoded><![CDATA[<p>This would be a great post if you could add some information that would make it possible to re-create.<br />
1. Where exactly are files uploaded?  In setup or in the Salesforce Files object?<br />
2.  How do you determine the staticResourceID etc of the images</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Shravan		</title>
		<link>https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-4022</link>

		<dc:creator><![CDATA[Shravan]]></dc:creator>
		<pubDate>Thu, 22 Feb 2018 10:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jitendrazaa.com/blog/?p=6315#comment-4022</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-3846&quot;&gt;Arun&lt;/a&gt;.

Hi Arun , Step Number is a variable that needs to be created here and I hope you havent confused that with the steps of flows. Also make sure that the default value of the step number to be 0.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-3846">Arun</a>.</p>
<p>Hi Arun , Step Number is a variable that needs to be created here and I hope you havent confused that with the steps of flows. Also make sure that the default value of the step number to be 0.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Arun		</title>
		<link>https://www.jitendrazaa.com/blog/salesforce/create-breadcrumb-or-chevron-control-in-flow/#comment-3846</link>

		<dc:creator><![CDATA[Arun]]></dc:creator>
		<pubDate>Thu, 16 Nov 2017 09:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jitendrazaa.com/blog/?p=6315#comment-3846</guid>

					<description><![CDATA[Hello Jitendra,

Thank you for posting this article. I am stuck at how the navigation between the pages is done depending on the stepNumber you have used. It would be great if you could give an insight on how to leverage the stepNumber to render the pages.]]></description>
			<content:encoded><![CDATA[<p>Hello Jitendra,</p>
<p>Thank you for posting this article. I am stuck at how the navigation between the pages is done depending on the stepNumber you have used. It would be great if you could give an insight on how to leverage the stepNumber to render the pages.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: www.jitendrazaa.com @ 2026-06-02 06:25:40 by W3 Total Cache
-->