Posts

Adding Members in Yammer community using MS flows

Image
Here we will know how to add members to a yammer group using ms flows. Please following the following steps: Step 1:  We need to register the yammer application .               Follow the steps from the link and get the Bearer token from it.                  Generate the Token from it.                     Step 2: Create a blank ms flow with a button trigger. Step3: Initialize a String and add the following content into the string variable.         "  https://www.yammer.com/api/v1/group_memberships.json?group_id={Yammer group id}&email={O365 Email id}" Note: Yammer group id will be in form of integer eg; 6*********6 Step 4: Add an HTTP Action next to it and do the following. Step 5: Now trigger the flow you will get members added into the yammer community. 

Create a Yammer Group though MS flows

Image
 To Create a Yammer Group using MS flows. Proceed with the following steps: Step1: Register a Yammer Group  follow the registration process. Step2: After Registration, Generate the bearer Token id,   Integration                                                                                                                                                                                                  ...

Month Picker in Power Apps

Image
For the enabling month picker in PowerApps. There is no direct option in Powerapps. We need to do a workaround procedure for a month picker. This month Picker is a custom build. With the help of SharePoint List, we can get the month picker working, Proceed with the following steps   Step 1: Create a Sharepoint list with the columns month in Letters and in numerics. Refer to the following pic: Create a new list in a SharePoint  with column title and number  with single line text data type Step 2:Inside a power app Create a gallery with the data source as the month picker SharePoint List Step3: Wrap the gallery with 3 columns and adjust the rows as per the requirement NOTE: Create a gallery with a Vertical view and with a wrap count of 3. Adjust the gallery as per your requirement  Add the List that you created the month picker in the data source of the gallery. Inside the ITEMS dialog box use the following formula. SortByColumns(Month_Picker,"ID",Ascending)  ...