Featured
-
How to enable CORS (Cross-Origin Requests) in ASP.NET Web API
There are certain steps that need to be followed f
by gaurav.gautam -
Why does my CHM have a blank content pane?
Hello Readers, Many times I have heard that, many
by Chetan.Sharda -
How to connect to icloud calendar?
Hello coder's world, To connect to icloud calen
by govind.chauhan -
Working with List in Provider Hosted App for Sharepoint
Sharepoint List in Provider Hosted App This Blo
by shubham.mamgain -
REST attributes of WCF Service
Objective: In this article we will explain what a
by govind.chauhan
Tags
How to add Team members to Projects in SharePoint 2013 using CSOM?
In SharePoint, while creating projects we would also have to add team members for each projects. Team members can contribute source control and other team item activity.
Team member are of two types:
1.Enterprise team member
2. Non enter...
Export workflow phases from one environment and import to another environment in SharePoint using CSOM
Workflow phases represents collection of Stages to represent project life cycle.
Example of phases are :
Create- Project information is captured in this phase.
Select- A subset of projects are selected in this phase.
Plan- An executi...
Export Driver Prioritization from one environment and import to another environment in SharePoint using PSI
Driver Prioritization sets Priority level for business strategy and project impacts.
Here below is the given code to create Driver Prioritization using PSI.
First I am exporting Driver Prioritization data from one environment and then importing...
Export Driver Library from one environment and import to another environment in SharePoint using PSI
Driver library is used to create business strategy associated with departments and project impacts.
Here below is the given code to create Driver Library using PSI.
First I am exporting Driver Library data from one environment and then importin...
How to create Lookup tables in SharePoint 2013 using CSOM?
Lookup tables is used in Enterprise Custom Fields. We can create Lookup tables programmatically either from CSOM or PSI. Here below is the example of creating Lookup tables using CSOM.
Microsoft.ProjectServer.Client.LookupTableCreationInform...
How to create Enterprise Custom Fields in SharePoint 2013 using CSOM?
Enterprise Custom Fields includes custom formula and lookup tables. We can create CustomField programmatically either from CSOM or PSI. Here below is the example of creating CustomField using CSOM.
Microsoft.ProjectServer.Client.CustomFieldC...
Connecting SharePoint site using CSOM
This code packet will help you to authenticate to O365 using Client Side Object Model(CSOM). It uses the SharePointOnlineCredentials class to get clientContext of SharePoint. Let try it yourself.
// Namespaces
using System;
u...
How to add Task to Projects in SharePoint 2013 using CSOM?
In SharePoint, each project has its own tasks, assignments, team members etc.While creating projects in SharePoint we have to also create its tasks, assignments, team members and custom fields.
Here below is the sample code for creating tasks ...
Programmatically create Workflow Stages in SharePoint 2013 using CSOM
For creating Stages using CSOM, we have to use StageCreationInformation.
1. First of all, assign basic information to Stage.
Microsoft.ProjectServer.Client.StageCreationInformation stageInfo = new Microsoft.ProjectServer.Client.StageCrea...
Programmatically create Project documents in SharePoint 2013 using C#
Each project has its own documents in SharePoint.
For creating the Project documents, first of all we have to create context by passing the projectSiteUrl.
1. Create context of projectSiteUrl
using Microsoft.SharePoint.Client;
context =...
How to check Project web app settings using PSI in SharePoint
Whenever we create new site in SharePoint site collections its default settings is "SharePoint Permission Mode". But to create Groups, Categories, Security Templates,User Sync Settings,Delegates and so on we require "Project Permis...
How to resolve error "PJClientCallableException: WSSWebAlreadyExists" in SharePoint 2013
A new method is introduced in CSOM is CreateProjectSite()
When we try create to create Project Site using this method, sometimes we get this error "PJClientCallableException: WSSWebAlreadyExists" which means the project site we try to ...
How to create Risks,Issues and Deliverables using CSOM in SharePoint
For creating list item, we have to use ListItemCreationInformation
First we create list of Risks
using Microsoft.SharePoint.Client;
context = new ClientContext(projectSiteUrl); //pass your project site url
context.Credentials = ...
Working with List in Provider Hosted App for Sharepoint
Sharepoint List in Provider Hosted App
This Blog will provide an insight of how we can use Sharepoint List and its properties in Provider Hosted App. Assuming you already are familiar with Sharepoint and Provider Hosted App.
As we all know Pr...
Sharepoint Development Setup on Local Server
This blog is useful in setting up your own Sharepoint development environment on local server.
I am assuming that you have already installed Sharepoint 2013 into your development server and now you want to start development for Sharepoint.
...