Pages

Tuesday, March 13, 2018

MS Flow doesn't allow adding @ sign in the body of HTTP Action

Introduction

I was trying to call a rest api call through HTTP action in Microsoft Flow. I had to use "@odata.id" as a parameter.

Problem Background

After adding "@odata.id" I tried to save the Flow, when I tried to save I got the below error message.
“The template validation failed: 'The template action 'HTTP_-_Add_User' at line '1' and column '5342' is not valid: "Unable to parse template language expression 'odata.id': expected token 'LeftParenthesis' and actual 'Dot'.".'.”



Solution

You will have to add two @ signs as give below.
"@@odata.id"

Wednesday, March 7, 2018

Disable Quick edit for SharePoint List

Introduction

In SharePoint List we have “Quick Edit” to edit list items from AllItems.aspx page.

image

Sometimes we need to remove “Quick Edit” from list and this blog post will show how to achieve it.

Solution

1. Go to List Setting

2. Go to Advanced Settings

3. There set the “Allow items in this list to be edited using Quick Edit and the Details Pane?” to False as shown below.

image

4. Click OK

Conclusion

image