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
gbabugbabu 

using loop how to show more then 1 record on screen in flows

Hi All,


Am working on survey using visual flows. i have one object that is question object. using fast lookup am getting the all the question list from question object and using loop am passing question to screen. by default one time one loop will pass 1 question to on screen, if you want next question if will redirect to next screen. 

My requirement is using loop i want to show more then 1 question on screen..  how it is possible plz let me know any solution is there...


Regards
Gb
NagaNaga (Salesforce Developers) 
Hi Gbabu,

The simplest way to configure your application is to add something like the following to your web.config or app.config file:

<system.net>
<defaultProxy useDefaultCredentials=”true”>
<proxy usesystemdefault=”True” proxyaddress=”http:\\Proxy IP Address:Proxy Port”/>
</defaultProxy>
</system.net>


Best Regards
Naga Kiran
gbabugbabu
where i have to add web.config or app.config? using this we can show more then 1 record on a single screen?