This blog is a repository of my experiences and knowledge in SharePoint Development and Management.
Thursday, November 10, 2011
Wednesday, September 21, 2011
Look up columns problem with List Templates.
When we try to recreate the lists with look up columns from one site to another site, we lose the look up connection.
For example if have two sites
A and B
A has list called A1 which has a look up column referring List AL1
If you want to take a copy of list A1 and recreate it in site B as B1 with look up referring to BL1.
Follow these steps
- Save List A1 as template (.stp).
- Go to site collection settings.
- open the list template gallery.
- Save the A1's template in your computer.
- Go to the .stp file saved in you computer.
- change its extension to .cab
- open the ziped file and extract the files in it to a folder.
- Open the manifest.xml file in notepad (or any other text editor).
- search for the GUID of list AL1 and replace it with GUID or BL1.
- save the manifest.xml file
- open command prompt and type the command "makecab manifest.xml template1.stp".
- It creates the template1.stp file.
- Upload template1.stp to the site collection of B site.
- create the list B1 using template1.stp.
- If you have multiple look up fields repeat the step 1 to 14 for all those fields.
If this is post is helpful, please leave a comment. Thanks.
Thursday, June 23, 2011
Adding Code-Behind to Custom Pages in SharePoint 2007
Labels:
adding,
behind,
code,
custom,
pages,
sharepoint 2007,
sharepoint help
Wednesday, May 18, 2011
Thursday, May 5, 2011
JQuery Script to Move View Selecting Menu to left side.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript">
$("td.ms-toolbar:last").insertBefore($("td.ms-toolbar[width='99%']"));
</script>
<script type="text/javascript">
$("td.ms-toolbar:last").insertBefore($("td.ms-toolbar[width='99%']"));
</script>
Monday, May 2, 2011
Nice Article about Association Columns.
Here is the link to MSDN Blog Post regarding Association Columns in SPD.
http://blogs.msdn.com/b/sharepointdesigner/archive/2011/05/02/association-columns.aspx?utm_source=twitterfeed&utm_medium=twitter
http://blogs.msdn.com/b/sharepointdesigner/archive/2011/05/02/association-columns.aspx?utm_source=twitterfeed&utm_medium=twitter
Friday, April 29, 2011
Copying and Moving SharePoint Designer (2007) Workflows....
Hi,
This is a common challenge for every one who works on SharePoint Designer Workflows.
In the working environment, after developing a workflow on a list using SharePoint Designer. There is no Out-of the -Box option to assign that workflow to other List in same server or in other server.
Here is the a simple work around for that
NOTE:- You should have the same column names in both lists. Atleast you should have the columns that you used in rules or actions of the workflow. However, the workflow can be moved eventhough if you dont have the common columns. But the problem is after moving the workflow, the columns that are not present in new list will be listed as blank in workflow. Don't worry you will understand after starting working on it.
Here are the steps.
1) open the WorkFlows folder in SharePoint Designer
2) Expand the workflow that you want to move
3) open <your workflow name> .xoml.wfconfig.xml file.
4) In the Association tag replace the listid with your new list id *.
5) save and close that file.
6) open you workflow xoml file and click finish.
Thats it you are done.
* In order to find the List ID of your New List open the list setting. In url you can find the list id.
( Replace %7B with {, %7D with }, %2D with -).
Post Comments if you have any trouble doing this.
Please leave a comment if this post is helpful to you.
This is a common challenge for every one who works on SharePoint Designer Workflows.
In the working environment, after developing a workflow on a list using SharePoint Designer. There is no Out-of the -Box option to assign that workflow to other List in same server or in other server.
Here is the a simple work around for that
NOTE:- You should have the same column names in both lists. Atleast you should have the columns that you used in rules or actions of the workflow. However, the workflow can be moved eventhough if you dont have the common columns. But the problem is after moving the workflow, the columns that are not present in new list will be listed as blank in workflow. Don't worry you will understand after starting working on it.
Here are the steps.
1) open the WorkFlows folder in SharePoint Designer
2) Expand the workflow that you want to move
3) open <your workflow name> .xoml.wfconfig.xml file.
4) In the Association tag replace the listid with your new list id *.
5) save and close that file.
6) open you workflow xoml file and click finish.
Thats it you are done.
* In order to find the List ID of your New List open the list setting. In url you can find the list id.
( Replace %7B with {, %7D with }, %2D with -).
Post Comments if you have any trouble doing this.
Please leave a comment if this post is helpful to you.
Labels:
copy,
move,
Sharepoint,
sharepoint designer,
Workflow,
xoml
Thursday, April 21, 2011
No Incoming Email feature in Office 365
Hi,
Two days back i got access to my Office 365 SharePoint site. It is so amazing. I am really excited with this new cloud computing feature. I started using it for my new business.
However it has a drawback. That is, lack of a feature which i expected to have. That is Incoming Email for Lists and Libraries.
Two days back i got access to my Office 365 SharePoint site. It is so amazing. I am really excited with this new cloud computing feature. I started using it for my new business.
However it has a drawback. That is, lack of a feature which i expected to have. That is Incoming Email for Lists and Libraries.
Monday, April 18, 2011
Hotfix for Time-Based SPD07 Actions (Pause for, Pause till)
Hi,
If you are using Sharepoint 2007. You will face the problem with Time Based actions in SharePoint Designer Workflow. They are
1) Even if the timer is done the next action will not be processed
2) The cooments field of workflow doesnt update the time remaining to go for next action
3) The workflow will be freezed at pause action forever.
Here is the Hotfix for that problem
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6096ce0f-d21e-47ac-afe2-d4e1c2fce670&displaylang=en
If you are using Sharepoint 2007. You will face the problem with Time Based actions in SharePoint Designer Workflow. They are
1) Even if the timer is done the next action will not be processed
2) The cooments field of workflow doesnt update the time remaining to go for next action
3) The workflow will be freezed at pause action forever.
Here is the Hotfix for that problem
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6096ce0f-d21e-47ac-afe2-d4e1c2fce670&displaylang=en
Thursday, March 24, 2011
A really good article to freeze header in Sharepoint List views.
This is a really good article which explains the jQuery to freeze the header in SharePoint List views.
http://kjellsj.blogspot.com/2009/06/sharepoint-jquery-scrolling-view-with.html
Please leave a comment if this post is helpful to you. Thanks.
http://kjellsj.blogspot.com/2009/06/sharepoint-jquery-scrolling-view-with.html
Please leave a comment if this post is helpful to you. Thanks.
Subscribe to:
Posts (Atom)