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
Ben Be 4Ben Be 4 

Visualforce Unknown property error

Hi I checked it couple of time and got the error below. I checked in my flow and that's the correct property name. Anybody knows what is missing? 
User-added image 


 
Banwari kevat1Banwari kevat1
Hi Ben,
 Replace line no 4 with followinf line:
<apex:param name="accountid2" value="{!Account.id}" />
If you this problem persist than let me know otherwise mark as answer.

Thanks
Banwari
 
Balayesu ChilakalapudiBalayesu Chilakalapudi
your <apex:page> must be <apex:page standardController="Account">

Try like this
​<apex:page standardController="Account">
<flow:interview name="Quoteflow" finishLocation="{!URLFOR('/006')}">
       <apex:param name="accountid2" value="{!Account.Id}"/>
</flow:interview>
</apex:page>
find more details in
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_flows_adding.htm


Let us know if it helps.
Ben Be 4Ben Be 4
Thanks Guys. Somehow when I insert the unique name of the flow "quoteflow" it saves it fine but when I put the actual activated flowname "Quoteflowfinal2" it give me the not found error (see below screenshots). It should go with the activated version. correct?   what is missing here?
User-added image

User-added image
Balayesu ChilakalapudiBalayesu Chilakalapudi
Activate your flow "Quoteflowfinal2" and save your page.

To activate it follow below steps.
  1. From Setup, enter Flows in the Quick Find box, then select Flows.
  2. Click the name of the flow.
  3. Click Activate or Deactivate next to the relevant version of the flow.