Skip to main content

Unable to create a list from the custom template uploaded to the list gallery in SharePoint online

SharePoint lists can be reused on multiple sites just with a list template without having to create a custom list from the scratch. 

This can be accomplished by saving the list as a template (.stp) file from the "List Settings" page.

Once the template has been created, it can be uploaded to any number of sites in their "List template Gallery" at the site collection level.

From here, the list can be created on any of the subsites under that site collection.

The approach is same for SharePoint online as well. 

But, in SharePoint online, the list could not be found under the "Add an App" section even after uploading the list template to the gallery.

So how to create a list from the template in SPO when it is not listed in the Apps?

1.  Create a Custom List from the site contents and save it as a list template. 

2. Click on "Add an App" and choose the OOTB list template. In the pop up where the list name to be mentioned, click on "Advanced options".

Now, copy the URL and paste it in a notepad.


Eg: 

https://sharepointsite.com/sites/test/_layouts/15/new.aspx?CustomTemplate=OOBlisttemp.stp&FeatureId={00bfea71-de22-43b2-a848-c05709900100}&ListTemplate=100&

3. Navigate to the list template gallery and copy the feature ID of the list template( the actual list which has to be created, the one which was not listed under the Apps).

4. Replace this feature ID with the one that is pasted in the notepad. Replace the ListTemplate ID  100 with 150.

The updated URL would be,

https://sharepointsite.com/sites/test/_layouts/15/new.aspx?CustomTemplate=CustomList.stp&FeatureId={00bfga81-he22-63b2-a848-c05707901101}&ListTemplate=150&

5. Browse to this updated URL and name the list. The list would be created with the desired template.


Happy SharePointing!!!

Comments

Popular posts from this blog

"An unexpected error has occurred. Changes to your data cannot be saved" excel SharePoint

“If you’re not making some notable mistakes along the way, you’re certainly not taking enough  business and career chances .” After creating a custom "Export to Excel" button on the SharePoint page as in my previous post:   https://nethrasb.blogspot.com/2020/05/export-to-spreadsheet-option-in.html we encountered an issue, where one of the user received "An unexpected error has occurred. Changes to your data cannot be saved" in the excel sheet to which the data has been exported. But I was able to export the data using "System Account" without any issue!  The user has full control over the site and there should not be any permissions related issues.  What could be the issue then?  It might seem silly but this is what happened. Humans make mistakes :) My fellow team mate who had been asked to create the view, created a "Personal" view instead of creating a "Public" view !  "Personal" view is i...

This site has exceeded its maximum storage limit.Error while uploading file to document library - SharePoint

Issue:  Unable to upload files to SharePoint document library irrespective of the document size. Solution: When you delete items from a SharePoint site, they're sent to the site Recycle Bin. When you delete items from a site Recycle Bin, they're sent to the site collection Recycle Bin.  A SharePoint site collection administrator can view and restore deleted items from the site collection Recycle Bin to their original locations. If an item is deleted from the site collection Recycle Bin, or it exceeds the retention time, it is permanently deleted. 1. Click the gear icon and go to the "Site Settings" page. 2. Under the Site Collection Administration, click on "Recycle bin". 3. Delete the unwanted files.

"Export to Spreadsheet" option in SharePoint list web part does not export all the columns

We all knew that the SharePoint list can be embedded in a web part page using the list web part. The list web part provides us with various properties which can be customized as per the requirement. One such property is the "Toolbar" . If "Show Toolbar" option is set, we would be provided with 3 tabs namely "New", "Actions" and "Settings".  The list data can be exported to an excel using the "Export to Spreadsheet"  option found under the "Actions" tabs.  Now here is the issue, suppose we have 10 columns in the list and we would like to show only 5 columns in the page, we would create a view in such a way that the page shows only the 5 columns.  If the data is exported from this page using the "Export to Spreadsheet" option, all the columns would definitely get exported, but the values would be exported only for those 5 columns which are shown on the page. This is because, the "Export to Spread...