cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Prevent flow from adding Apply to Each step from Get Items / Add Attachment / Id

Hello, 

 

I am trying to prevent an 'Apply to Each' as the flow is marked as ticked but the actions inside the apply to each are not pulling data through and remining blank. 

 

The Value I want to bring in is a Id value from a Get Items step further up the flow. Can you extract Id? 

 

Thanks 

 

SDH_84_0-1652966986410.png

 

22 REPLIES 22

Hi SDH, 

 

I've had similar issues in the past. The "Apply to each" inserts itself anywhere that might have more than one result. Even if you know your 'Get Items' only returns one, it will still throw an apply to each in there. I tend to get around this by initialising a variable, and then using "append to string" for the value I want. This takes all the "for each" results (of which you have 1) and then turns it into a string variable you can then use 

SimonSmith84_0-1652973260289.png

Not 100% sure whether this is of use to you without seeing your flow, but it has bypassed this issue nicely for me on a few occasions. 

Hi @SimonSmith84  

 

Thanks for your response. I've posted the flow in screen grabs below. The value I'm after is the SharePoint List Item Id from the first 'Get Items' adding it into the 'Add Attachments 3' For some reason currently the loop inside 'Add attachments 3' is greying out and not collecting the data, but the flow is ticking off the step.  

SDH_84_1-1653031360666.png

 

 

SDH_84_0-1653031272541.png

 

 

Thanks! Much easier to understand when seeing it in context 🙂

 

If it's literally just the Sharepoint item ID you're after, this should solve the problem:

 

  1. After "Get Items", initialise a string variable.
  2. After the initialized variable, create an "Append to string variable" step.  SimonSmith84_0-1653034024504.png

     

  3. In the 'Append to string' step, select the variable you just initialised as the 'Name' and set the 'Value' to your dynamic content 'ID' from 'Get Items'
  4. As soon as you do this, the Append to String will be put inside an 'apply to each'. This isn't a problem, as you're just appending one result to the string. 

The end result will be a string variable that you can use in 'Add attachment 3' where you currently have the 'ID'. 

 

It's an awkward method, and as much as it does sort of make sense how Power Automate does this, as it assumes 'Get Items' will return multiple results. Even though you know it is only going to return 1. 🙂

 

Hopefully this helps, but if not please feel free to check back in!

Hi @SimonSmith84 

 

Thanks for taking the time to respond. 

 

Unfortunately when I add the append to string variable to the Id filed it only allows a 'Current Item' which leads to the following error message:

 

'Flow save failed with code 'InvalidTemplate' and message 'The template validation failed: 'The inputs of template action 'Add_attachment_4' at line '1 and column '4985' is invalid. Action 'Apply_to_each_3' must be a parent 'foreach' scope of action 'Add_attachment_4' to be referenced by 'repeatItems' or 'items' functions.'.'.' 

 

Any suggestion on this? Thanks

 

SDH_84_0-1653291522870.png

 

SDH_84_1-1653291554331.png

 

 

Hmmm... 

 

that is really odd. I must be missing something here. I don't have an answer right now, but let me try and build something similar to what you have here and see if I can replicate the issue. (It's something I use a lot so it's useful for me to understand what's going wrong for my own future use.) 

 

I'll try and get back to you ASAP with an answer 🙂

Hi SDH - Just had a thought while building a similar flow myself... 

 

If you add a 'Get Item' (Singular) step after your apply to each 3, and  use the String_Test variable as your ID, would this work? I'll keep working on it myself anyway, but if this solves the issue, it'll get you moving on quicker 🙂

Hi SDH - Solved it!

 

I managed to replicate your issue, and could see no good reason why the String_Test variable wasn't showing up in your Dynamic content. 

 

I tried to basically force it to accept the result of the variable using an expression and this worked!  in your Id field in Add Attachment, input the expression as follows: variables('String_Test')

SimonSmith84_0-1653297153718.png

 

Hi @SimonSmith84  _ really appreciate the time and effort you have put into this!

 

However - When running the flow I get the following error at the point of the flow where I have forced the expression!

 

The 'inputs.parameters' of workflow operation 'Add_attachment_4' of type 'OpenApiConnection' is not valid. Error details: Input parameter 'itemId' is required to be of type 'Integer/int64'. The runtime value '""' to be converted doesn't have the expected format 'Integer/int64'.

@SimonSmith84 By removing the Get Items and replacing with Get Item I lose the ability to Filter which is required to check if the email received to the Shared Mailbox has the Conversation ID which send new emails into a different flow. 

Hi SDH - Not a problem, it's proving educational for me too! 

 

That error implies that your variable is a null string I think? Can you check the flow run history on the run that failed, specifically the Append to string variable part?

 

If it's appending nothing but null values, then your variable at the Add_attachment_4 step will be """ rather than a whole number as it requires for the 'ID' field. 

@SimonSmith84 Morning,

 

Yes there is a Null value being returned.

 

SDH_84_0-1653373357713.png

 

 

Where should I put the "" ? Instead of variables('String_Test')?

 

Thanks

Morning SDH. We'll get there! 🙂

 

Check the "Append to string" step and see what the output is there. I suspect the issue isn't the Add Attachment step, it's that nothing is being appended to the variable. If your "Get items" returns no results, then it's appending "" (ie: Nothing) to the string, resulting in the variable being applied in "Add Attachments" to be a blank (""). 

Simon - Yes the value is greyed out, which was the problem I was having initially in Attach Item 3! Do you know why this passes the validation? 

 

SDH_84_0-1653378283344.png

 

 

Hi SDH, 

 

it passes the validation because the variable still exists, it just happens to be a blank because nothing was appended to it. Can you check your "Get Items" result and see if it's returned anything?

 

If your 'Get Items' Step returns no values, then there's nothing to append and the issue lies in the flow failing to retrieve any items. 

 

If 'Get Items' is retrieving items, then the issue is with the variable. 

 

I think it's more likely that it's the Get Items, but let's find out so we can then dig deeper 🙂

SDH_84_0-1653379346529.png

 

SDH_84_1-1653379619524.png

 

"Body":{"Value":[]}} mean empty? 

 

Erm... 

 

OK so I might have spotted the issue.... your filter query states: ConverstationID eq 'AAQkADAw.....' is that a typo? Or is that really the field name?

 

If that is definitely the correct field name, then I'd reccomend manually trying to locate that conversation ID in your Sharepoint list. Then you know whether it's the conversation ID that's incorrect, or the request to retrieve the item 🙂

Simon - that was rather embarrassing. I've corrected the formula, the flow still does not work, however the output of 'Get Items' Filter query is returning a blank 

SDH_84_0-1653386525110.png

 

The formula should be 'Converstation Id' eq outputs('Get_email_(V2)')?['body/converstationId']

Happens to the best of us! 

 

It's really hard to help you isolate the problem without knowing exactly how the sharepoint list is structured, what drives the ConversationID field etc. The only thing I can think to suggest is the below:

 

  1. Remove the oData filter query and see whether you get any results that way. If you do, then the issue is likely the filter query. If not, then there's another issue with the data source. 
  2. Check your Filter Query carefully, including the field names. I've found the best way to confirm you're naming the field in your query right is to access the sharepoint list, and go to "list settings". Then select the field you want to see. You'll see the exact name of the field in the URL like this: SimonSmith84_0-1653393268107.png

     

  3. If we can't figure out how to make the filter query works, you can use a workaround - get all items, and then add in a 'filter array' step, but we can cross that bridge when we come to it. 

Hi,

 

Point One has shown why the flow isn't working. There is a problem with the filter, as the flow has run, however the ID number the variable adds to the Id is a string of all ID's. I am trying to compare the Conversation ID captured at the first ticket against the Conversation ID in the subsequent emails received as this is always the same. That way incoming tickets don't generate new tickets but are saved as attachments in the SharePoint item against the Id

 

I've rechecked point two and the columns are correct. 

 

SDH_84_0-1653398518929.png

 

SDH_84_1-1653398549133.png

 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (690)