Skip to main content

#Flows23 discutindo

I am experiencing a synchronization delay when trying to link a newly built flow to a subagent action. After creating the flow, I go to add a new action and select Flow as the Reference Action Type. However, the flow does not immediately appear in the Reference Action dropdown list and takes several minutes to become visible.

Could you please advise if this is expected caching behavior? If so, what is the standard propagation time I should expect? 

 

#Agentforce  #Flows

2 respostas
  1. Khyati Mehta (InfinySkills) Forum Ambassador
    12 de set., 16:26

    Hello Amit, 

     

    Yes, this can happen due to backend synchronization/caching. Newly created Flows may take a few minutes before they become available in the Reference Action dropdown for a subagent. It’s not usually an issue with the Flow itself. There doesn’t seem to be a fixed guaranteed propagation time, but in practice, waiting a few minutes and refreshing/reopening the action configuration usually makes the Flow appear. Hope this helps!

0/9000

Hi everyone! 

 

I am trying to configure a new screenflow to have it's Uploaded File's name mapped into a text field.  I tried creating a Variable (Text-Collection) and added an Update Records element after the screen in an attempt to map it, but I can't get it right.   

 

What am I doing wrong here? 

 

Help with mapping attachment names into a field

 

image.png

 

image.png

 

 

 

 

 

#Flow  #Screen Flow  #Flows

12 respostas
  1. 8 de set., 03:09

    @Mario Santellan

      

    your flow is basically right — the only broken piece is the GetFileName filter value. In that resource picker you're currently on 'Related Record ID', which is the record you attached the files to, not the uploaded file. Instead pick the Upload File component's 'Content Document IDs' output (Upload File > Content Document IDs) — that's the list of the uploaded files' Ids. Also change the operator from Equals to In, since that output is a collection: the condition should read Content Document ID In → Upload File > Content Document IDs. Equals against a collection is exactly why nothing matched. Your Title mapping is already right — Title lives on the ContentDocument record, which is why 'Content Document from GetFileName > Title' works in AddAttachmentName (Title = file name without the extension; add FileExtension if you need the .pdf/.docx part). On multiples: with 'Only the first record' selected you'll capture just the first file's name. If a partner uploads 2+ files and you want them all, switch GetFileName to 'All records', add a Loop over it, and in an Assignment append each 'Loop > Title' (plus a comma) into a Text variable, then map that variable into File Name. If one name is enough, first-record is perfect as-is. Give that a try — it should populate.

0/9000

hello 

i can't access   this  suberbag   trailhead  page 

 

Advanced Flow for Agentforce Superbadge Trailhead page

tha,ks  for    help 

 

#Flows

4 respostas
  1. Ajaypreet Singh Saini (Grantbook) Forum Ambassador
    8 de set., 17:28
0/9000

Hello, I would be interested in improving my Salesforce programmatic  and declarative skills by lending my services  pro bono (no money) . I have past experience 

working as a  Salesforce developer creating and maintaining automation for a couple of non-profit companies (Awana International and CBN) and would like to help lend my skills  and support in any way that I can.   Thanks much. 

 

#Nonprofit User Groups  #Salesforce Developer  #Flows

0/9000

A Flow calls an Invocable Apex method, and Apex updates the same record that triggered the Flow. 

Will the Flow run again?

  

 

#Flows

4 respostas
  1. 2 de set., 12:25

    No, the Flow itself won't automatically restart just because Apex updates the same record — Salesforce doesn't loop back into the currently running Flow from within its own transaction. 

    But watch out for this:

     

    If that Apex update happens to match the entry criteria of a

    Record-Triggered Flow (even the same one), Salesforce can fire a new Flow execution — because to the platform, it's just another DML update on the record, not "the same Flow running again." 

    One-line takeaway:

     

    Same Flow instance won't re-run recursively, but a fresh Flow trigger can fire on that DML — so it's still safer to add a guard condition (like checking if the specific field actually changed) if you want to avoid unintended re-entry. 

0/9000
4 respostas
  1. 2 de set., 06:18

    Hi @Archana Chittoor

    Yes, we can create a report to see the usage of Screen Flows.

    Go to Reports -> Public Folders -> Sample Flow Report: Screen Flow.

    This report shows:

    • Which users are running the Screen Flows
    • Number of flow executions
    • Flow interview status
    • Time users spend on each screen

    By default, the report shows data from the last 7 days. We can change the date filter, but the maximum available data is 31 days.

    If the report is not available, we can create a custom report type using Flow Interview Logs and Flow Interview Log Entries.

    Thanks. 

0/9000

Hello everyone, 

 

I want to learn flow from beginner to advance level, so can anyone pls tell me sequence of trails to learn flow in exact sequence. 

 

#Flow  #Flows

2 respostas
0/9000
Nich Weidman perguntou em #Flow

I have a Flow that needs to send an email when a record is created on a Custom Object.  No matter what I put in the recipient field, I continue to get "0 recipients Error ID: 1728011022-505532"when I try to trigger the flow.  

 

What I first tried was go search resources, triggering record -> Respondent field (this looks up the contact) ->Contact ID:

How to set Recipient ID in Flow Send Email Action

 

 

When that failed, I tried several different versions of creating a text variable to look up the same thing and put that in the recipient ID field.  Again, no luck.  Finally, I switched the look-up from "Search Resources" to "Enter Text" and put in the text of a contact ID I know for sure is active and has a valid email address, but still got the error. 

 

For this flow, I need to have it pull the email address of the Contact (Respondent) listed in these records.  What am I missing? 

 

 

#Flow  #Flows  #Custom Objects

3 respostas
  1. 25 de ago., 04:56

    Hi, see the tool tip on the Recipient Addresses field which says it needs to have an email address not id. Try using the hardcoded email address and test to see its working.Hi, see the tool tip on the Recipient Addresses field which says it needs to have an email address not id. Try using the hardcoded email address and test to see its working.

0/9000

We are performing a migration from a legacy Salesforce Username-Password OAuth integration to an External Client App using Client Credentials. To validate migration behavior, we need the org-wide setting "Allow OAuth Username-Password Flows"

enabled in our org. Could Salesforce Support confirm whether this setting can be enabled, whether any feature flags are required, and whether there are edition-specific restrictions preventing its availability? 

 

#OAuth 2.0  #Usernames  #Password  #Flows  #External Application

2 respostas
  1. 19 de ago., 16:55

    Hey Ramandra, 

     

    Himanshu's answer is accurate and matches what's actually being reported. Real-world evidence backs this up: even after explicitly turning on "Allow OAuth Username-Password Flows," users are still getting a "Username-Password Flow Disabled" error, confirming the toggle alone doesn't guarantee the flow will work, Salesforce's platform-level retirement enforcement can override it regardless of your org setting. 

     

    So to your three original questions: 

    - The setting existing and being toggleable doesn't mean the flow will actually function, this is confirmed behavior people are hitting even now 

    - Whether Support can override this for validation purposes is genuinely a case-by-case Support/AE conversation, not something the community can confirm 

    - Not edition-specific, it's the platform-wide retirement, not a licensing tier restriction 

     

    Practical suggestion: since you're already building the Client Credentials integration, validate it independently rather than trying to get the legacy flow re-enabled for a side-by-side. Compare against logs/behavior from your old integration instead of live-running both simultaneously, that avoids being blocked by something Salesforce is actively phasing out. 

     

    Reference:

    https://help.salesforce.com/s/articleView?id=xcloud.remoteaccess_oauth_username_password_flow.htm&language=en_US&type=5

0/9000

I have created 1 Orchestration Flow. It is breaking for 1 one of the Activity on the Connect Portal. 

If I am running the Orchestration Flow outside of the Connect Portal then it is working fine and giving me the respected output. 

I am working in 3-4 sandboxes but only on 1 sandbox it is giving me the following error.  

 

An Error Occurred with Your "Project Approval Flow" Orchestration

 

 

You’ve received this email because an error occurred while your "Project Approval Flow" orchestration was running. 

View debugging information for this orchestration in Flow Builder.

 

 

Error element Submit_for_Approval5 (FlowOrchestratedStage). 

An error occurred. Try again, or contact Salesforce Customer Support and provide this error ID: 53194206-372493 (1440708959)  

 

Can anyone help me with this. 

Is any permission or something is missing for the connect portal because of that it is not working. 

Need to find the solution asap. 

 

#Customer Service  #Flow-Orchestration

 

#Flows #Salesforce Developer #Architects

0/9000