Looking to kick start your #Automation journey with #MuleSoft Composer, #MuleSoft RPA, and #Flow?
Check out our new onboarding guide for Salesforce Admins looking to expand into MuleSoft!
Which resources help you?
Looking to kick start your #Automation journey with #MuleSoft Composer, #MuleSoft RPA, and #Flow?
Check out our new onboarding guide for Salesforce Admins looking to expand into MuleSoft!
Which resources help you?
I keep getting the error below while trying to create a flow in Mulesoft composer.
Can someone guide on resolving the below?
Thanks
#MuleSoft Composer
Hello,
Please try below
- Clear the cookies and cache for browser
- Try with incognito browser
- try different browser
Hi everyone, I have this scenario: after having retrieved attachments of a case from Salesforce with Salesforce Connector I must send the content of the attachment via HTTP request. Is it possible to do this in Mulesoft Composer? If yes can you explain me how can I do it?
Thanks
Devi
I have a blog posted on the same use case:
https://medium.com/another-integration-blog/salesforce-org-2-org-file-transfer-using-mulesoft-composer-286665589d32
Let me know if this helps
I have 7 integrations/flows from another platform (Unanet) into Salesforce. 6 flows work fine; 1 (higher volume and 2-part API call) frequently times out. The problem flow pattern is:
Is there a better pattern? Does Composer support “collections” (like Flows do) and a single bulk API call to upsert all Timeslips after collection (i.e., in a single upsert call vs multiple upsert calls)? If not, is there a way to “re-authenticate” mid-flow? Other patterns?
Hello @Vinod Kumar Yerra
try to reduce the number of retrieved records / size of retrieved information, to check if that issue comes from the amount of data you are trying to query.
Eric
I'm needing to test our sandbox MuleSoft flow between our Sandbox (FC) to Sandbox (STPC) and getting the following error:
Activation failed. Try again.Error details:There was an error trying to publish the flow: Failed to upload asset to Exchange, groupId: 79990c05-6b1e-4816-90dd-991324c5444c, artifactId: c0c40d3d-5bbc-421c-8c60-7d39f9ebd3e6, version: 10.0.0. Exception: nullTrace ID: bc68d6483c6130f8d7be3996064fb4e5-ba544f4bbf71cf2f-01Include the Trace ID in your ticket to help the support team quickly diagnose, reproduce, and solve your issue.
Had to place a Case with SF & they did something on their end to fix.
I am trying to set a variable value from an incoming payload field. I am using a custom expression like upper(payload.name), but it is not working as expected. Input Payload: { "name": "ben", "age": 100 } Current Output: { "resp": "PAYLOAD.NAME" } Issue: The expression is being treated as a literal string rather than referencing the payload field. Question: How can I correctly access the incoming payload fields in MuleSoft Composer so that the name field is transformed to uppercase?
The expression upper(
payload.name) is the correct syntax to convert the name field in the payload to uppercase. However, the issue occurs because MuleSoft Composer is treating the expression as a literal string instead of evaluating it.To fix this, make sure you enter the expression in expression mode (usually by clicking the fx button next to the input field) rather than as plain text.
Enter the expression without enclosing it in quotes. For example, enter this exactly:
upper(payload.name)
not as "upper(payload.name)" or 'upper(payload.name)'.
Entering the expression without quotes ensures that Composer evaluates it rather than treating it as a string literal.
You can also use the Expression Builder or preview features to verify the output before running the app.
https://docs.mulesoft.com/anypoint-code-builder/int-configure-dw-expressions
https://docs.mulesoft.com/dataweave/latest/dw-core-functions-upper
Thanks!
Hello,
I want to know if anybody has information on how MC could potentially integrate with BigCommerce in a two-way integration? I can't find any documentation on it and keen to learn more.
Thanks in advance.
James
I don't have much experience using Mulesoft, but I had better luck with Skyvia. It syncs data both ways between BigCommerce and Salesforce, needs no complex setup, and has detailed documentation.
I am currently building a workflow in MuleSoft Composer to send automated emails via Gmail. However, I am facing an issue with formatting the email body. Specifically, I am unable to insert proper line breaks or new lines in the email body text. I have tried using \n but it does not work.
,
How can I set the content type of the email body to text/html in Mulesoft Composer?
I am using mulesoft composer flow to sync data from netsuite to salesforce. There are some fields that i am unable to fetch in the flow. What are the possible reasons for that and how can i improve it?
There are some other fields that i am able to fetch but no value is retrieved.
Chances are that you don’t have the correct permissions to view/edit those fields in whichever system you’re connecting to.
I would check that first.
Is it NetSuite or Salesforce fields that are not showing up?