cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
SDH_84
Helper I
Helper I

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
SimonSmith84
Helper II
Helper II

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. 

SDH_84
Helper I
Helper I

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!

SDH_84
Helper I
Helper I

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

 

 

SimonSmith84
Helper II
Helper II

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

 

SDH_84
Helper I
Helper I

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'.

SDH_84
Helper I
Helper I

@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. 

SDH_84
Helper I
Helper I

@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

SimonSmith84
Helper II
Helper II

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 (""). 

SDH_84
Helper I
Helper I

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

 

 

SimonSmith84
Helper II
Helper II

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
Helper I
Helper I

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 🙂

SDH_84
Helper I
Helper I

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']

SimonSmith84
Helper II
Helper II

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. 
SDH_84
Helper I
Helper I

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

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Unlocking Community Achievements and Earning Badges

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!     THIS WEEK'S TIP: Unlocking Achievements and Earning BadgesAcross the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. These badges each signify a different achievement--and all of those achievements are available to any Community member! If you're a seasoned pro or just getting started, you too can earn badges for the great work you do. Check out some details on Community badges below--and find out more in the detailed link at the end of the article!       A Diverse Range of Badges to Collect The badges you can earn in the Community cover a wide array of activities, including: Kudos Received: Acknowledges the number of times a user’s post has been appreciated with a “Kudo.”Kudos Given: Highlights the user’s generosity in recognizing others’ contributions.Topics Created: Tracks the number of discussions initiated by a user.Solutions Provided: Celebrates the instances where a user’s response is marked as the correct solution.Reply: Counts the number of times a user has engaged with community discussions.Blog Contributor: Honors those who contribute valuable content and are invited to write for the community blog.       A Community Evolving Together Badges are not only a great way to recognize outstanding contributions of our amazing Community members--they are also a way to continue fostering a collaborative and supportive environment. As you continue to share your knowledge and assist each other these badges serve as a visual representation of your valuable contributions.   Find out more about badges in these Community Support pages in each Community: All About Community Badges - Power Apps CommunityAll About Community Badges - Power Automate CommunityAll About Community Badges - Copilot Studio CommunityAll About Community Badges - Power Pages Community

Tuesday Tips: Powering Up Your Community Profile

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Tip: Power Up Your Profile!  🚀 It's where every Community member gets their start, and it's essential that you keep it updated! Your Community User Profile is how you're able to get messages, post solutions, ask questions--and as you rank up, it's where your badges will appear and how you'll be known when you start blogging in the Community Blog. Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile.     Password Puzzles? No Problem! Find out how to sync your Azure AD password with your community account, ensuring a seamless sign-in. No separate passwords to remember! Job Jumps & Email Swaps Changed jobs? Got a new email? Fear not! You'll find out how to link your shiny new email to your existing community account, keeping your contributions and connections intact. Username Uncertainties Unraveled Picking the perfect username is crucial--and sometimes the original choice you signed up with doesn't fit as well as you may have thought. There's a quick way to request an update here--but remember, your username is your community identity, so choose wisely. "Need Admin Approval" Warning Window? If you see this error message while using the community, don't worry. A simple process will help you get where you need to go. If you still need assistance, find out how to contact your Community Support team. Whatever you're looking for, when it comes to your profile, the Community Account Support Knowledge Base article is your treasure trove of tips as you navigate the nuances of your Community Profile. It’s the ultimate resource for keeping your digital identity in tip-top shape while engaging with the Power Platform Community. So, dive in and power up your profile today!  💪🚀   Community Account Support | Power Apps Community Account Support | Power AutomateCommunity Account Support | Copilot Studio  Community Account Support | Power Pages

Super User of the Month | Chris Piasecki

In our 2nd installment of this new ongoing feature in the Community, we're thrilled to announce that Chris Piasecki is our Super User of the Month for March 2024. If you've been in the Community for a while, we're sure you've seen a comment or marked one of Chris' helpful tips as a solution--he's been a Super User for SEVEN consecutive seasons!   Since authoring his first reply in April 2020 to his most recent achievement organizing the Canadian Power Platform Summit this month, Chris has helped countless Community members with his insights and expertise. In addition to being a Super User, Chris is also a User Group leader, Microsoft MVP, and a featured speaker at the Microsoft Power Platform Conference. His contributions to the new SUIT program, along with his joyous personality and willingness to jump in and help so many members has made Chris a fixture in the Power Platform Community.   When Chris isn't authoring solutions or organizing events, he's actively leading Piasecki Consulting, specializing in solution architecture, integration, DevOps, and more--helping clients discover how to strategize and implement Microsoft's technology platforms. We are grateful for Chris' insightful help in the Community and look forward to even more amazing milestones as he continues to assist so many with his great tips, solutions--always with a smile and a great sense of humor.You can find Chris in the Community and on LinkedIn. Thanks for being such a SUPER user, Chris! 💪 🌠  

Find Out What Makes Super Users So Super

We know many of you visit the Power Platform Communities to ask questions and receive answers. But do you know that many of our best answers and solutions come from Community members who are super active, helping anyone who needs a little help getting unstuck with Business Applications products? We call these dedicated Community members Super Users because they are the real heroes in the Community, willing to jump in whenever they can to help! Maybe you've encountered them yourself and they've solved some of your biggest questions. Have you ever wondered, "Why?"We interviewed several of our Super Users to understand what drives them to help in the Community--and discover the difference it has made in their lives as well! Take a look in our gallery today: What Motivates a Super User? - Power Platform Community (microsoft.com)

March User Group Update: New Groups and Upcoming Events!

  Welcome to this month’s celebration of our Community User Groups and exciting User Group events. We’re thrilled to introduce some brand-new user groups that have recently joined our vibrant community. Plus, we’ve got a lineup of engaging events you won’t want to miss. Let’s jump right in: New User Groups   Sacramento Power Platform GroupANZ Power Platform COE User GroupPower Platform MongoliaPower Platform User Group OmanPower Platform User Group Delta StateMid Michigan Power Platform Upcoming Events  DUG4MFG - Quarterly Meetup - Microsoft Demand PlanningDate: 19 Mar 2024 | 10:30 AM to 12:30 PM Central America Standard TimeDescription: Dive into the world of manufacturing with a focus on Demand Planning. Learn from industry experts and share your insights. Dynamics User Group HoustonDate: 07 Mar 2024 | 11:00 AM to 01:00 PM Central America Standard TimeDescription: Houston, get ready for an immersive session on Dynamics 365 and the Power Platform. Connect with fellow professionals and expand your knowledge. Reading Dynamics 365 & Power Platform User Group (Q1)Date: 05 Mar 2024 | 06:00 PM to 09:00 PM GMT Standard TimeDescription: Join our virtual meetup for insightful discussions, demos, and community updates. Let’s kick off Q1 with a bang! Leaders, Create Your Events!  Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you!

Users online (6,822)