The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
61 views

Visual Workflow - Creating Paragraphs and Double Line Breaks

For whatever reason, when I try to create double line breaks using the Visual Workflow HTML editor the 2nd gets removed Tried doing this by just using "Enter" key and editing the actual HTML by ...
5
votes
1answer
47 views

Flows calling objects in managed packages

I'm wondering if someone has a best practice / blueprint which works better than the following scenario that I've got myself into: Created a managed package in a D.E. org which contains a Flow ...
2
votes
2answers
57 views

Debugging visual workflow

I've got a "unhandled fault" in one of my flows. I tried using the debug logs, but they're very small, nearly empty. What's a good way to figure out what is causing the issue?
0
votes
0answers
158 views

How to Implement Process.Plugin for use with Flow

I have a process contains a custom button on opportunity layout. When the opportunity turns to closed won, a user clicks the button and go into a visual workflow several new records: license (custom ...
2
votes
1answer
76 views

Fetch unique values using visual workflow

I am creating a dependent picklist in visual workflow using dynamic choice elements. The data source for picklists is database. When I fetch values I am getting duplicate values as it is in the ...
0
votes
1answer
144 views

Copy Opportunity Products to Contract Line Items

I have created a flow does several actions: create a new Service contract with user input (start date, end date, name) create a new license key to send to end user change the opportunity to closed ...
4
votes
2answers
311 views

Custom Button Return URL (retURL)

I am using a custom button to execute a flow and a retURL tag to return to the record after the flow has been completed. ...
1
vote
1answer
131 views

Passing Parameters to a Flow from a salesforce report

We have a use case in which we need to be able to invoke a flow and also pass parameters from a salesforce report. Is there any way to do it ?. If there is no direct way, I was thinking to invoke a ...
1
vote
1answer
265 views

Using Flow (Visual Workflow), is it possible to increase a custom date field by adding 'x' days in an assignment?

I would like to use a Flow to perform a record update and increase a custom date field on a record by 365 days. In a good old SFDC formula field, you can do this easily by using a simple date formula ...
2
votes
1answer
121 views

Visual Workflow Error in managed packages

I am playing around with Salesforce visual workflow but getting an error 'The (DB_Add_Object) element in your flow has validation errors.' I'm just trying to create an object based on a few fields on ...
1
vote
2answers
115 views

Running a flow in a system context

We have a flow in our org that accesses a few custom objects (create,update). These objects are not accessible to most profiles, and when those profiles try to run the flow it fails since they don't ...
1
vote
1answer
337 views

Visual Workflow - Create multiple records based on dynamic choices

I have two objects that are related via Master Detail through a junction object. Lets call it ObjectA, ObjectB, JunctionObjectC. I have flow that creates Object A and stores the new record ID. Later ...
6
votes
1answer
450 views

How do I pass parameters to a Visual Workflow?

I need to pass an ID as an input parameter to a visual workflow. I could not find any documentation on how to do it. Is it possible?
3
votes
1answer
220 views

Visual Workflow customization

I have had a number of clients asking about Visual Workflow. Most questions so far have to do with: How do I upload files? How do I show related tasks and cases to the lookup I just completed ...
3
votes
2answers
365 views

Test class for Visual Workflow

I have a flow, which shows a list of Opportunities, one by one based on score. This flow has been referenced in a Visualforce page: <apex:page controller="OppPriorityController"> ...