31 reputation
17
bio website
location Bangalore, India
age 28
visits member for 1 year, 3 months
seen 12 hours ago
stats profile views 1

A tech savvy IT professional.


May
7
awarded  Popular Question
Mar
14
awarded  Notable Question
Feb
26
comment Developing for SharePoint 2013 using Visual Studio 2012 offline installer
thank you for the link.
Jan
10
asked Developing for SharePoint 2013 using Visual Studio 2012 offline installer
Oct
12
comment How to get Unique visitors per page using the OOTB Web analytics in Sharepoint 2010?
Total visits (unique) /perpage - not per day, total till date
Oct
11
asked How to get Unique visitors per page using the OOTB Web analytics in Sharepoint 2010?
Oct
4
awarded  Popular Question
Jul
11
awarded  Editor
Jul
11
revised Calendar issue: OOTB Calendar disabled in Sharepoint 2010
added an update to the scenario
Jul
11
asked Calendar issue: OOTB Calendar disabled in Sharepoint 2010
Jun
14
asked How to customize the Calendar View in SharePoint 2010?
Jun
8
comment User profile synchronization for User profile properties
I tried creating a text field and then syncing, but it still did not show any value. If there is a restriction of TEXT field it does not serve my purpose, so instead I am programmatically doing people search now and is working fine with that.
Jun
8
awarded  Scholar
Jun
8
accepted Using Date offset in CAML query
Jun
7
awarded  Supporter
Jun
7
answered Using Date offset in CAML query
Jun
7
comment Using Date offset in CAML query
I found the query...thank you for your help!
Jun
7
comment Using Date offset in CAML query
yes...I found a workaround by adding extra columns.
Jun
6
comment Using Date offset in CAML query
his happens because the offset applies to the current date and not the StartDate (i.e. list field).
Jun
6
comment Using Date offset in CAML query
the above query will not give the correct result. Let me give an example: If the StartDate is 2-Jun, then the date ranges are 2-Apr( 2/Jun - 60) and 2-Jul(2/Jun + 30) [for the sake of brevity I am considering 30 day months]. Hence if the condition 2-Apr <= current date <= 2-Jul satisfies then the list item should be obtained. Hence, on 3-jul this list item should not be obtained. If we apply the above query with current date as 3-Jul, then the date ranges are: 3-May (3/Jul - 60) to 3-Aug (3/Jul + 30) and 2-jun lies between the date ranges. Hence on 3-Jul this list item will be obtained.