cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
amitlathia
Frequent Visitor

InvalidTemplate error using select action in flow

Hi Community,

 

I have been building a flow, which up until recently worked. All of a sudden I am receiving the following error...

 

InvalidTemplate. The execution of template action 'Select' failed: The evaluation of 'query' action 'where' expression '...The template language expression 'item()['Babukaka_x0020_Hall_x0020_Start_']' cannot be evaluated because property 'Babukaka_x0020_Hall_x0020_Start_' doesn't exist... 

 

error.PNG

 

From what I can see it is saying that the selected column from sharepoint does not exist - but I have selected this from the get items output, and I can also confirm its not a required field in sharepoint so even blank values should not impact this from working. The column concerned is a simple date/time field.

 

Has anyone had a similar problem or able to suggest a solution. My flow is designed to select certain columns from a sharepoint list and create a CSV table which will then get emailed out on a regular basis.

 

Many thanks for your help in advance

 

Amit

15 REPLIES 15
v-yamao-msft
Community Support
Community Support

Hi @amitlathia,

 

I assume that there might be blanks within the Date column. Please make sure all the fields under the Date column are filled with value.

 

I have made a test on my side. When there is a blank value under the Date column, the flow would be failed with the error you mentioned. While if all the fields under the Date column are filled with value, it will run succeed.  If you test with other types of columns, you will get the same result.

 

Please try to fill in all the date fields then test it again.

 

 

Best regards,

Mabel Mao

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

thanks @v-yamao-msft Mabel,

 

Is this not a bug then... In a normal use of sharepoint lists there maybe instances where date/time field is not completed. In my application for example, there are fields which only get updated at certain points for example confirming reciept of payment, or only entering a time/date if a room has been blocked.

 

Also I removed the date/time fields from my flow and found that even non-date fields are coming up with the same error. It cannot surely be the case that all fields must be completed for the flow to work? I have previously had this flow working but it has stopped all of a sudden, so the data would not be the issue because even in previous versions there were blank fields.

 

Please advise any alternative work around as blank fields are likely to be necessasary on this sharepoint list.

 

Thanks

 

Amit

Hi Mabel @v-yamao-msft and community,

 

I would really appreciate if someone could have a look at this issue for me - I tried to recreate on another sharepoint list and have the same issues. Blank fields may be the issue, but I really need a work around as the sharepoint list is designed to have blank fields. Is there any way of telling flow to either ignore the fact that a field is blank and therefore still provide the rest of the data from that item or any other work around so I can get the CSV table of the various sharepoint columns?

 

Really appreciate your support in advance.

 

Amit

Thank you!! Had similar issue, indeed due to missing value. I whould think if a value is empty, it would just show blank.

 

Anonymous
Not applicable

Hello

I have exactly the same problem with 'get items' and 'select'

the error message is the same:

InvalidTemplate. The execution of template action 'Select' failed: The evaluation of 'query' action 'where' expression '{ "SAIBT Entry ": "@item()['Title']", "Pathway Year": "@item()['Pathway_x0020_Year']", "UniSA Division ": "@item()['UniSA_x0020_Division']", "SAIBT Pathway Program ": "@item()['SAIBT_x0020_Pathway_x0020_Progra']", "Requirement on Exit ": "@item()['Requirement_x0020_on_x0020_Exit']", "GPA Requirement ": "@item()['GPA_x0020_Requirement']", "UniSA Program Code ": "@item()['UniSA_x0020_Program_x0020_Code']", "Stream Code ": "@item()['Stream_x0020_Code']", "UniSA Program Plan Description ": "@item()['UniSA_x0020_Program_x0020_Plan_x']", "Note Code ": "@item()['Note_x0020_Code']", "Credit Granted": "@item()['Credit_x0020_Granted']", "Yrs at UniSA": "@item()['Yrs_x0020_at_x0020_UniSA']", "Cricos Code": "@item()['Cricos_x0020_Code']", "Annual Fee": "@item()['Annual_x0020_Fee']", "Total Course Fee to use on CoEs": "@item()['Total_x0020_Course_x0020_Fee_x00']", "UniSA Intake": "@item()['UniSA_x0020_Intake']", "SAIBT Stream": "@item()['SAIBT_x0020_Stream']", "NOTES": "@item()['NOTES']" }' failed: 'The template language expression 'item()['Stream_x0020_Code']' cannot be evaluated because property 'Stream_x0020_Code' doesn't exist, available properties are '@odata.etag, ItemInternalId, ID, Title, Pathway_x0020_Year, UniSA_x0020_Division,
 
There are no date fields in my list but there are a lot of empty fields
 
anyone get a fix to this?
 

I have the same issue. I expect it can be fixed with some sorrt of if(isblank([column name]), "placeholder text", [column name]) type expression, but I'm yet to embark on trying to resolve this. I'll update this thread if I figure it out.

@Anonymous and @amitlathia if you're still looking for an answer to this, here it is:

 

In the select operation, set the value to an expression like this:

if(empty(item()?['Column']), '-', item()?['Column'])
This example replaces bank fields in the column called Column with a dash character. Edit as you see fit for you purpose.
Anonymous
Not applicable

Thank you

 

Anonymous
Not applicable

@WillPage Thank you for pointing us in the right direction. But the If(empty.. condition didnot work for me. 

Changing your code to the below worked!

if(equals(item()?['Column'],null), '-', item()?['Column'])

@Anonymous  good to know it worked for you. If I was solving the same problem now I would use the coalesce function instead of if(equals(something,null), something else, something) I'd do coalesce(something, something else) to achieve the same.

Anonymous
Not applicable

@WillPage Really appreciate your solution, using I can get some first-level details/values 

But what if I want to get second-level values from the JSON.

 

Assume I have the below schema to get "Title" and Name from the Permission JSON.

 

 

{
  "type": "object",
  "properties": {
    "d": {
      "type": "object",
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "__metadata": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string"
                  },
                  "uri": {
                    "type": "string"
                  },
                  "type": {
                    "type": "string"
                  }
                }
              },
              "Member": {
                "type": "object",
                "properties": {
                  "__metadata": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "uri": {
                        "type": "string"
                      },
                      "type": {
                        "type": "string"
                      }
                    }
                  },
                  "Alerts": {
                    "type": "object",
                    "properties": {
                      "__deferred": {
                        "type": "object",
                        "properties": {
                          "uri": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "Groups": {
                    "type": "object",
                    "properties": {
                      "__deferred": {
                        "type": "object",
                        "properties": {
                          "uri": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "Id": {
                    "type": "integer"
                  },
                  "IsHiddenInUI": {
                    "type": "boolean"
                  },
                  "LoginName": {
                    "type": "string"
                  },
                  "Title": {
                    "type": "string"
                  },
                  "PrincipalType": {
                    "type": "integer"
                  },
                  "Email": {
                    "type": "string"
                  },
                  "Expiration": {
                    "type": "string"
                  },
                  "IsEmailAuthenticationGuestUser": {
                    "type": "boolean"
                  },
                  "IsShareByEmailGuestUser": {
                    "type": "boolean"
                  },
                  "IsSiteAdmin": {
                    "type": "boolean"
                  },
                  "UserId": {
                    "type": "object",
                    "properties": {
                      "__metadata": {
                        "type": "object",
                        "properties": {
                          "type": {
                            "type": "string"
                          }
                        }
                      },
                      "NameId": {
                        "type": "string"
                      },
                      "NameIdIssuer": {
                        "type": "string"
                      }
                    }
                  },
                  "UserPrincipalName": {
                    "type": "string"
                  }
                }
              },
              "RoleDefinitionBindings": {
                "type": "object",
                "properties": {
                  "results": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "__metadata": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "uri": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            }
                          }
                        },
                        "BasePermissions": {
                          "type": "object",
                          "properties": {
                            "__metadata": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "High": {
                              "type": "string"
                            },
                            "Low": {
                              "type": "string"
                            }
                          }
                        },
                        "Description": {
                          "type": "string"
                        },
                        "Hidden": {
                          "type": "boolean"
                        },
                        "Id": {
                          "type": "integer"
                        },
                        "Name": {
                          "type": "string"
                        },
                        "Order": {
                          "type": "integer"
                        },
                        "RoleTypeKind": {
                          "type": "integer"
                        }
                      },
                      "required": [
                        "__metadata",
                        "BasePermissions",
                        "Description",
                        "Hidden",
                        "Id",
                        "Name",
                        "Order",
                        "RoleTypeKind"
                      ]
                    }
                  }
                }
              },
              "PrincipalId": {
                "type": "integer"
              }
            },
            "required": [
              "__metadata",
              "Member",
              "RoleDefinitionBindings",
              "PrincipalId"
            ]
          }
        }
      }
    }
  }
}

 

 

from the above code, i can able to get Title property values 

if(equals(item()?['Member']?['Title'],null), '-', item()?['Member']?['Title'])
but we would like to get Name property which is under RoleDefinitionBindings
if(equals(item()?['RoleDefinitionBindings']?['Name'],null), '-', item()?['RoleDefinitionBindings']?['Name'])
if(equals(item()?['Member']['RoleDefinitionBindings']?['Name'],null), '-', item()?['Member']['RoleDefinitionBindings']?['Name'])
if(equals(item()?['RoleDefinitionBindings']['results']?['Name'],null), '-', item()?['RoleDefinitionBindings']['results']?['Name'])


if(equals(item()?['d']['results']['RoleDefinitionBindings']['results']?['Name'],null), '-', item()?['d']['results']['RoleDefinitionBindings']['results']?['Name'])

 

but no luck 

 

Can you assist me how can I get Name property value from RoleDefinitionBindings

 

Looking at your schema, the whole thing is an object which contains another object called d and that contains an array called results. The results array contains objects of which RoleDefinitionBindings is a property. That property is in turn an object which contains a property called results which is an array.

 

So you have several dimensions of the array to work through here. The first layer can you can reference the individual "results" array items by their index number, e.g body('Get_items')?['d']?['results']?[0] for the first one, body('Get_items')?['d']?['results']?[1] for the second one etc, or pass body('Get_items')?['d']?['results'] into an Apply to each loop.

 

If you pass it into an apply to each you can then reference the inner "results" array like this:

 

items('Apply_to_each')?['RoleDefinitionBindings']?['results']?[0], items('Apply_to_each')?['RoleDefinitionBindings']?['results']?[1] etc. Again, you can have another apply to each within here using items('Apply_to_each')?['RoleDefinitionBindings']?['results'] as the input and select the Name property inside the inner Apply to each with items('Apply_to_each_2')?['Name']

 

So you really need to know what it is you're trying to select. Which item of the outer results array contains the item, and within that, which item of the inner results array contains the Name you're looking for? You can achieve this with Filter array actions using the same inputs as the Apply to each loops and a filter condition that you know will only return one result, and select it with the [0] array index selector above (no Apply to each). I have no idea about your data structure or use case so hard to advise on the specifics here. 

Anonymous
Not applicable

@WillPage 

First of all, thank you for your response and reply.

Yes you are right the schema is in the form of an array, object, and array
Finally from a youtube video, I understand how to call/refer array elements within the array.

Here is the formula as of now I am getting and which is working as expected.
item()?['RoleDefinitionBindings']?['results']?[0]['Name']

you can update/Share other than this if any 

 

Thank you.

 

Anonymous
Not applicable

Hi , 
For me the column had a different name! Thanks for this!

Thank you x 10000000000000000 🙂

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