Feb 28, 2011

Twitter in SharePoint CEWP

Hi,

To get the twitter tweets/feeds in to your sharepoint do this simple work. Open your site and add a CEWP (Content Editor Webpart) to the page. And add the following java script in to that




script src="http://widgets.twimg.com/j/2/widget.js">< /script ( Here I have missed open brace'<' and closed brace '>'  to show script to you )

And write the below in the script tags

new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 5,
interval: 6000,
width: 200,
height: 500,
theme: {
shell: {
background: '#F45C00',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'all'
}
}).render().setUser('SharePoint2010').start();


The source of the java script file taken from http://widgets.twimg.com/j/2/widget.js.

Note : Here the type of the display is Profile. And also u can show the list . HereI have set the value of the setUser property is Sharepoint2010(http://twitter.com/SharePoint2010) .Instead you can display your own feeds/tweets by giving your twitter account over there(ex:.render().setUser('purnamadugula').start();).Also you can show  the list and customize the user interface...

Here is the more information on this:

Source Links :

http://www.readwriteweb.com/archives/10_twitter_list_widgets_you_can_grab_embed_right_n.php
http://bombshelter.org/TweetCode.txt

Feb 25, 2011

Record Center in Sharepoint 2010

 Hi Guys,

In this post I am going to explain a basic level of the Record Management concept in Sharepoint 2010.Records Management by name itself “Managing the Records”. We can say It is an approach or a way to manage the records in a flexible fashion for further needs. For example I have 100 docs in my library, I need to send some of these docs to another specified location for archival purpose (like a storage).We will use this process to achieve this.
In Simple my aim is : I should be able to send my docs to another Location(Here Records Center).

Here are the steps to implement this

Here I am sending the docs in my Shared documents to Records Center




Select a document and click on Send To Option as below, You will not find any location(record center) to send

For  this I am going to create a site using Records Center template

Go to site Actions-->New Site-->Select Records Center

Give Title and Url
Title : MPC Records Center
Url : http://MyServername:port/MPCRecordCenter/default.aspx





The Record Center Creation is Now done.

I need to send my documents in Shared Documents to this Records Center. For this I need to set a communication path between these so go for

Central Administration-->General Application Settings-->Under External Service ConnectionsConfigure send to Connections


Then you will be redirected to Configure Send To Connections Page


Select the webApplication (where you have Shared document ), Check the Allow sites to send to connections outside the site subscription(if u need) and in Send To Connections

In Connection Settings section give the following

Display Name : give a display name what you want to appear when a document is selected “Send To” Menu option (Here I am giving MPCRecordsCenter)

Send To URL : Give the URL of the Records Center Which we have created earlier(http://MyServername:port/MPCRecordCenter/default.aspx)

Check the box allow manual submission from send to menu

Send To Action : Copy, Move, Move and Leave a Link

Here I am selected Copy (When I am sending (using “Send To” option) the document to record center I don’t want to remove from Shared documents. If you select Move it will be moved to Records Center and disappears in Shared documents)

Explanation : Just give a small desc..

Click on Add Connection Button. A connection will be established to the Document Library and the Record Center which we created earlier.

So go for our Shared Documents and click on a document (here Book3.docx) and select “Send To” option from the context menu. You will find the Record Center name (MPCRecordCenter) which we have created earlier


Click on it. It will pop up saying “Do u want to copy this doc to MPCRecord Center”. Click OK. A page will be opened with the status and Url of the copied document in Record Center. Click on that link (or Check the Record Center ‘s Drop-off Library , you will find this document.)

There are different methods and scenarios to manage the records using records center. Here I have explained just basic level of Record Management. For further information go to these links


Source Links: http://technet.microsoft.com/en-us/library/ee424395.aspx
http://blogs.pointbridge.com/Blogs/2010wave/Pages/Post.aspx?_ID=37
http://grounding.co.za/blogs/neil/archive/2008/03/04/setting-up-a-record-centre-in-sharepoint.aspx

 
Enjoy Reading..!


Rating Feature for Sharepoint 2010 Document Library


In 2010 a new feature is introduced for rating the documents in doc library..I will explain here how to rate the documents and what are things we need to set to get this feature...

Open the Document library(here my library name is BOOKS) which you want to set the rating feature.





Go for Doc Library Settings-->Rating Settings-->Select Yes under "Allow items in this list to be rated



Click Ok 
Then you will find the rating column in your document library as follows


Give Rating to the Docs(select the rating Stars.) You will notice that the rating will be applied.But upon refreshing the page ,the applied rating will be disappear.
This is due to By default the Timer Job(Social Rating Syncronization) related to this service is set to run for every hour. Instead if you want to change to minutes/some other you have to change the settings as follows

Central AdministrationàMonitoringà Select Review Job Definations


In that Select User Profile Service Application-Social Rating Synchronization Job



Then you will be navigated to the Timer Job Edit page
In Recurring Schedule section "This timer job is scheduled to run " Hourly by default. Change it to minutes (here i kept it to 2 mins)
 


Click on Run Now Button
Now go back to your document library  and give rating to a document




It works ..