Saturday, September 3, 2022

How to create a SharePoint List in Tamil | SharePoint Online List in Tamil

 In this video i have given you a short overview on SharePoint List and different ways to create a list, How to create a SharePoint List in Tamil

What You'll Learn: ✔️ what is SharePoint List ✔️ Limitations of SharePoint list ✔️Different Columns of SharePoint List ✔️ Create list from Blank ✔️ List columns rename



Introduction to Microsoft SharePoint Online in Tamil | what is Microsoft SharePoint Online

 In this video i have given you a short overview on SharePoint which is a web-based collaborative platform that integrates natively with Microsoft Office. Launched in 2001, SharePoint is primarily sold as a document management and storage system, but the product is highly configurable and its usage varies substantially among organizations

What You'll Learn: ✔️ what is SharePoint ✔️ History of SharePoint ✔️Best practices of SharePoint ✔️ Evolution of SharePoint ✔️ List and Library ✔️ Site Permissions ✔️ Benefits of SharePoint



Variables in Powerapps in Tamil | 3 types of PowerApps Variables in Tamil | Rank Calculator app

 In this video I have explained step-by-step tutorial on how you can create a Rank Calculator app using Microsoft PowerApps using Variables

Microsoft SharePoint Playlist https://www.youtube.com/playlist?list=PLpPq2RbQHL-3poKwei6tlD2sAML84ETnu How to create a SharePoint List - https://youtu.be/-iDNs5NrxS4 Power Apps Link : https://make.powerapps.com/ What You'll Learn: ✔️ How to create Rank Calculator app using Powerapps ✔️ What is Global Variable ✔️ What is Context Variable ✔️ What is Collections ✔️ How to use Clear ✔️ Usage of SUM Function ✔️ View variables and collections in File Menu

Get Source File here:

Create a Employee Database app using Microsoft PowerApps | Learn PowerApps in Tamil

 Learn PowerApps in Tamil  | Create a Employee Database App   

In this video I have explained step-by-step tutorial, learn how you can create a Microsoft PowerApps from a SharePoint list in a easy way. Empower your team to start building and launching apps right away using prebuilt templates, drag-and-drop simplicity, and quick deployment—then roll out continuous improvements as needed. Microsoft SharePoint Playlist https://www.youtube.com/playlist?list=PLpPq2RbQHL-3poKwei6tlD2sAML84ETnu How to create a SharePoint List - https://youtu.be/-iDNs5NrxS4 Power Apps Link : https://make.powerapps.com/ What You'll Learn: ✔️ How to create a Powerapps from SharePoint list ✔️ Adding new screens in powerapps ✔️ Navigating to other screens ✔️ Overview on Gallery and Form ✔️ Button and Icons ✔️ On success behavior ✔️ Adding images in powerapps



Source File : https://github.com/JeganBas/PowerApps/blob/main/EmployeeDatabaseApp_20220903125934.zip


Introduction on Power Apps | Create your first app | Video in Tamil

What is Power Apps ?

PowerApps is low code platform through which we can create apps for mobile, tablet and desktop. We can make use of almost all kinds of office 365 products as datasource. The following video can help you to understand the basics of PowerApps in Tamil.




Saturday, October 10, 2020

Save an output using PowerShell

Most of the times we want to get some report or any such values from our SharePoint using PowerShell, Once we got the output in the PowerShell window, we want to save it as a document, for that we used to copy them and paste it in a new window. 

There is a simple solution for that, we can add a line of code to save the output data in the desired file format. 

Following is an example of code to get the SharePoint list field data as a output.

$site = Get-SPSite "https://mysharepointsite.com/"
$fID = "69xd368d-2f95-4juc-a1f9-8d4324ecb007"
$fields=$site.rootweb.fields | where ID -match $fID
$fields

We will be able to see the output in the PowerShell window now, to save it as output file as text document, please use the following code.

$site = Get-SPSite "https://project-insight.cas.com/"
$fID = "64cd368d-2f95-4bfc-a1f9-8d4324ecb007"
$fields=$site.rootweb.fields | where ID -match $fID
$fields >D:\Field_Details.txt

Now, the output is saved in the D drive automatically. As per the requirement we can change the directory and file format. 

Monday, September 16, 2019

SharePoint - How to view all the Alerts added in your site by different users in various list

Sometimes as a SharePoint we might came across a issue or situation where we have to manage the alerts in our sites.

In order to mange them, we want to view all of the alerts in the sites at one place, else we have to reach out to each users to know the alerts created by them which is not a fair idea.

So let's see the simple steps to view all the Alerts added in your site by different users in various lists.

Go to your Site
Go to  Site Settings à Site Action à User Alerts or  user the below URL format to navigate to the user alerts page. 

https://your site domain/sites/subsite/_layouts/15/sitesubs.aspx

 Here you go, select the drop down with the list of users who created alerts in that particular site.

On selecting a user, we can able to see the alerts in various list created by the user / or tagged to that particular user,

Also, for a Site Admin, they will have the options to Delete those alerts if required.

How to create a SharePoint List in Tamil | SharePoint Online List in Tamil

  In this video i have given you a short overview on SharePoint List and different ways to create a list, How to create a SharePoint List in...