• Rakesh31
  • NEWBIE
  • 5 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Hi Guys,

I have created a custom article type and had one custom field File_Attachment__c of "File" type.

I trying to insert blob data as

ka.File_Attachment__c= [blob]

But it was saying Invalid field File_Attachment__c for SObject Community_Article__kav

PS: I am using developer edition.

Hi,

 

I am trying to pass values to varibles of a flow  named 'CallReasonSelectFlow' from vf page.

I am getting this error.  unexpected token: ':' at the interview attribute in the vf page.

i will be inserting this page as a related list..

 

my vf page:

<apex:page standardController="Contact_Program__c" extensions="VisualWorkFlowController" >
  <flow:interview name="CallReasonSelectFlow" buttonLocation="bottom" interview="{!CallReasonSelectFlow}" >
     <apex:param name="SelectedProgramId" value="{!ProgramId}"/>
     <apex:param name="SelectedProgramName" value="{!ProgramName}"/>
  </flow:interview>
</apex:page>

 

Controller:


public with sharing class VisualWorkFlowController {
    public Flow.Interview.CallReasonSelectFlow CallReasonSelectFlow {get; set;}
    public Contact_Program__c contctProgObj;
    public Program__c ProgObj;
    public static String ProgramId{get;set;}
    public static String ProgramName{get;set;}
    
    
    public VisualWorkFlowController (ApexPages.StandardController controller) {
                ------------------ my code for getting values..
    }

Thanks in advance.

Hi,

 

Is there a way to export/download a flow file that has been uploaded to a Salesforce org?

 

Thanks

  • October 07, 2011
  • Like
  • 0