Display new items in document libraries on hompage
I have created several document libraries and added documents to each one. How do I show new items added to the document libraries on the homepage of the subsite>
sukai
You've had a few suggestions in your post here
http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cdb3305-b3ef-4884-8745-b14d76e7fb60/display-new-items-in-document-libraries-on-hompage?forum=sharepointgeneralprevious
Have you any budget to spend? If so, I'd suggest looking at the Lighning Tools Lightning Conductor Web Part. This'll allow you to combine multiple libraries into one. You can then set a date filter to show the most recent 3/4 days of documents
only.
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.
Similar Messages
-
Access Denied only when deleting items from document libraries
This is across the farm every user is effected. Everything has been working fine for years without issue. First thing I noticed the other day was when opening a document (any document) and clicking "Edit Document" I'm prompted
with "there is a new version on the server, do you want to use it" Click yes and go about my business. I can replicate this with brand new documents that have no changes. Not sure if that is related but thought it should be included.
Now on to the real problem.
No permissions have changed.
Users can created new items in document libraries, edit them without issue. Try to delete them "Access Denied" Go into DataSheet view and/or Explorer view and can delete all day long.
Any ideas?
It is very strange at least admin should allow to delete if there is no additional customization on library. Can you also check if there is checkin/checkout enable in library and file in checkedout mode.
Do one more testing, upload new document in same library and check whether user is able to delete new file or not.
>All lists across the farm. No policies.
As you said this is happening across all the lists in site collection so have you tested the same in different site collection? if not then please do so.
Also check if by mistaken there is any modification in web application permission.
http://technet.microsoft.com/en-us/library/ff608071%28v=office.15%29.aspx
Let us know your result
Hemendra:Yesterday is just a memory,Tomorrow we may never see
Please remember to mark the replies as answers if they help and unmark them if they provide no help -
Display data from multiple document Libraries in List View Webpart
Hi All,
I want to display data from multiple document libraries into one list view webpart(custom i have created)
I went through the following link http://blogs.msdn.com/b/ramg/archive/2009/04/22/implementing-a-simple-cross-site-collection-list-view-webpart.aspx
but it tells to display only from one document library.
My motive behind displaying data in the list view webpart is to achieve the functionality of Check In ,Check Out and other OOB features.
With Regards,
Jaskaran SinghHi,
As there is no such OOTB feature, a workaround is to create a visual web part to gather items from libraries and implement functionalities like Check in, Check out files
in different libraries.
The links below will provide more details:
Create Visual Web Parts in SharePoint
2010
A demo about displaying list items in visual web part:
http://www.dotnetcodesg.com/Article/UploadFile/2/217/Web%20Part%20in%20SharePoint%20To%20Show%20All%20List%20and%20List%20Items.aspx
About the Check In and Check Out:
How to Check In a document programmatically
SPFile.CheckIn method
and SPFile.CheckOut method
Best regards
Patrick Liang
TechNet Community Support -
USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying
Greetings;
This seems to an ongoing issue (see related discussion link). We've been experiencing the same update lag since last Friday. The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself. Apple is aware of the issue and is investigating. All the best...
Syd Rodocker
Tennessee State Department of Education
https://discussions.apple.com/message/15461971#15461971 -
Querying list items of document libraries returns incorrect values.
I have several document libraries. I am trying to get only the documents that the a selected user has however it is returning other authors documents. Attached is my code. Any help would be greatly appreciated.
CamlQuery camlQuery = new CamlQuery();
string query = "<View Scope='Recursive' /><ViewFields><FieldRef Name='File' /><FieldRef Name='FileLeafRef' /><FieldRef Name='LinkFilename'/><FieldRef Name='LinkFilenameNoMenu' /><FieldRef Name='Modified' /><FieldRef Name='Created' /><FieldRef Name='Author' /></ViewFields>" + "<Where><Eq><FieldRef Name='Author' LookupId='TRUE'/><Value Type='Integer'>" + user.Id + "</Value></Eq><AND><Eq><FieldRef Name='ContentType' /><Value Type='Computed'>File</Value></Eq></And></Where>" +
"<OrderBy><FieldRef Name='Created' /><FieldRef Name='Modified' /></OrderBy><QueryOptions><RowLimit>" + count + "</RowLimit></QueryOptions></View>";
camlQuery.ViewXml = query;
listItems = list.GetItems(camlQuery);
clientContext.Load(listItems);
clientContext.ExecuteQuery();Hi,
The CAML statement below can filter the documents created by a specific user,
please test it in your environment:
@"<View Scope='RecursiveAll'>
<Query>
<Where>
<Eq>
<FieldRef Name='Author' />
<Value Type='User'>Display Name</Value>
</Eq>
</Where>
</Query>
<ViewFields>
<FieldRef Name='FileLeafRef' />
<FieldRef Name='Author' />
</ViewFields>
</View>";
Best regards
Patrick Liang
TechNet Community Support -
How to display new items in a report.
I have a report that I produce weekly. Is there a way to highlight items that are new to the report that week or possibly create a summary report that shows those items? I have my training manuals and online help - I would just appreciate where to look - have been trying and cannot find anything. I also realize that this may not be possible but I thought I heard this secnario in my training.
Thank you.If CR has someway to know that the data is new, you can certainly use that to highlight. Is there a field, that indicates new data, or can it be done by date posted ?
-
Iterating through all Document Libraries, Folder and Item -Sharepoint 2010
Hi
I want to read all RootFolder,Subfolder along with all "items" from Document Librarie.
Can anyone please advise on this
ThanksUse caml query with recursiveall which
will fetch all root folder and subfolder data from a document library.
for
your reference.
http://sharepoint.stackexchange.com/questions/29405/get-items-under-folder-caml
https://social.msdn.microsoft.com/Forums/office/en-US/6beba66a-adcc-4764-ba0d-ba7870d71457/recursive-caml-query?forum=sharepointdevelopmentprevious
camlQuery.ViewXml = "<View Scope=\"RecursiveAll\"> " +
"<Query>" +
"<Where>" +
"<Eq>" +
"<FieldRef Name=\"FileDirRef\" />" +
"<Value Type=\"Text\">/ecm/Business/Business/Projects/IDECO_P01030000</Value>" +
"</Eq>" +
"</Where>" +
"</Query>" +
"</View>";
Regards,
Rajendra Singh
If a post answers your question, please click Mark As Answer on that post and Vote as Helpful http://sharepointundefind.wordpress.com/
Regards, Rajendra Singh If a post answers your question, please click Mark As Answer on that ost and Vote as Helpful http://sharepointundefind.wordpress.com/ -
Open News Item in Portal Content Area
Hello,
I have KM Navigation iView pointing to a KM folder which displays news items.
I have used LinkListExplorer layoutset to display the news.
On click on any news in this iView, the News is opened in an new window. I need to know how can I open the News in the Portal Content Area.
Help me out !
Regards,
PoornimaHI,
IF you want to display your news in portal than why are you using this KM navigation Iviews . Go with document iview no need to describe any layout set and you can easily appear and display the news content in your portal. Just mention the path to the folder and define the news.
This will helpful.
Regards
RS -
How to define new item category for mm purchasing document
Hi,
pls let me know the path for defining new item categories for MM Purchasing document
thanks,Hi,
Item category you are talking abt , you won't be able to create that as it controls the below item level items of your PO tcode screen .
Thanks
Dipak -
Document panel not opening in Office due to error in new document libraries
Hi,
all our new document libraries have the same issues when opening office documents with standard document panel.
The form contains schema validation errors.
Content for element 'documentManagement' is incomplete according to the DTD/Schema.
Expecting: {fa742bdc-a2be-4b36-877c-a90d9817da44}_dlc_DocIdPersistId.
It is a standard sharepoint info path form, no custom form? What can be the issue?
regards
MartinI have been seeing the same thing. I can go to library settings and change the advanced setting to "Open in the browser" and the document panel opens fine after clicking "edit in Word". If it is set to "Open in the client
application", then the same error you state above is given.
Our environment is SharePoint 2013/O365. -
MI02 : new items for a document with item already counted
Dear.
I try to insert new items for an inventory document.
This document have items already counted.
The system send this error message M7706 : Items already counted (no new items possible).
Do you know a solution to avoid this error message ?
Thanks.M7706 is a hard coded error message, you cannot control it via message attributes.
What you can do is to do a re-count via transaction MI11 with reference to this inventory document. In this case you will be able to add new items, however, you have to enter the counted amounts for the existing items again.
But in my opoinion it's easier to create a new PID as suggested by Jurgen. -
Item Level Security in Document Libraries
Hi all,
I need to set up an Item level Security in Document Library in SharePoint 2007. Does this requirement have any OOTB Feature in SharePoint or through CUstomization is the only road.I have researched and found that it can be done using coding.But I didn't
find anything in OOTB.This feature is available OOTB for the lists but why can't it will be available for Document Libraries.Please help.
Thanks,Hi Pa1 Kumar,
Item level security is available only for list not for document library. This is the design behavior. But don't worry you don't need to write any code for this because CODEPLEX solution is available for this.
Here is the solution link:
http://www.endusersharepoint.com/2009/07/07/configure-item-level-permissions-for-document-libraries/
http://vspug.com/usecases/2009/07/07/configure-item-level-permissions-for-document-libraries/
Hope this will help
Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see" -
Display select Document Libraries on Page
Hello
I want to display on a page all document libraries with read access, shared access and secured. The best way to categorise these, I think, is to associate libraries with content types. So I'll have 3 content types which dictate permissions. (Permissions set
manually).
Now that the libraries have content type I need a way to display them on the page. So if its Content Type Read then I see a green icon, clicking on this will navigate to the library. If CT is Shared then I see an amber icon .. etc.
I've provided a high level idea but maybe there’s some other way to tag the libraries signifying access levels.. even read the permissions directly..
Any ideas on how to achieve? I don’t have CQWP (publishing is off) at my disposal so maybe front end / back end code ?Hi,
Based on your description, my understanding is that you want to get all the libraries associated with specific content types.
I recommend to loop through all the libraries in the site programmatically, then use
SPList.ContentTypes or List.ContentTypes property to get the content type in the library and check if the content type is the one specified.
More references:
http://stackoverflow.com/questions/15219968/how-to-get-list-of-all-document-libraries-from-sharepoint-site-programatically
http://spdailytips.blogspot.com/2012/06/retrieve-all-document-libraries-in.html
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.contenttypes.aspx
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.list.contenttypes(v=office.15).aspx
You can also use the SPList.CheckPermissions method to check if the permission of current user on the libraries.
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.checkpermissions.aspx
Thanks,
Victoria
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Victoria Xia
TechNet Community Support -
How to make New Folder command available as No as the default value for document libraries
Hi, is there a way to make this option as No as the default value instead of Yes, for all new document libraries? Perhaps with a powershell command for an entire site collection?
Hi Cartin,
I would suggest to create a library template of an empty library with this settings as NO. Use this template for creating new libraries.
For updating existing libraries you can use:
$Site = Get-SPSite http://Site
$ListName = "library Name"
$Site | Get-SPWeb | ForEach-Object {
$List = $_.Lists[$listName]
$List.EnableFolderCreation = $false
$List.Update()
$Site.Dispose()
You can modify the above script for you need. -
Display Field Filled With 'New Item' when Blank
Hi all,
I am facing a Strange Problem.
When i try to create a Record Via DM, When a DF is Blank and once the record is saved it is being filled with a text called 'New Item'..This is Occuering siometimes when i create and sometimes not.
There is a validation which will not allow to leave it blank, but the validation is not executing properly as the Field is filled with text 'New Item' Some times (Which inturn says it is not NULL)
How to get rid of this issue.
I need this Feild to be DF Because i need to include this field in Email notification.
In production the records will be created via Portal.
I am worried if this will be replicated via Portal!!
Can anyone suggest me..
KR
JohnHi John,
Yes you are correct. When your field is a display field & if you dont enter data in it while creating record, MDM will add default value "New Item" in it. (even if you create record from Portal same thing will happen)
If you want to write Not Null validation on this field below is the work around:
Enable the Required property for your field in console.
But Required property in console works only when u write validation in Data manager.
The default REQUIRED_FIELDS validation does not work if your required field is also a Display field
You need to write addition condition along with REQUIRED_FIELDS.
When you try to create record without entering data in display field, MDM will add default value "New Item" if field lengh is equal to or more than 8 ( or "New It" if legth is 6 for example)
So copy the value which you will get in ur display field and use it as shown below:-
REQUIRED_FIELDS AND Name < >"New Item" (Here Name is considered as display field) (REQUIRED_FIELDS you need to type in expression window)
Or if you dont want to enable required property Then just add Name <> "New Item" validation in your existing expression (Here Name is considered as display field)
Thanks,
Mahi
Maybe you are looking for
-
Memory problem on Msi x48c platinum
Hi every body, I have a MSI x48c platinum mainboard, Recently i bought a ddr3 memory module (corsair CMX4GX3M2A1600C9) trying to upgrade my system, after replacing old memories with new ones, system didn't boot. Even bios setting page did not apear.
-
Error while navigating from one transaction to another
Hi All, We are on Ep7. I have imported roles in srm as worksets into portal and assigned them to portal roles. Functionality of iViews is fine but when user tries to go back to the begining or to another transaction , a logoff popup is thrown. Steps:
-
Materials not getting replicated after Client Copy
Hi, We are having classic scenario and we did a client copy on MM and SRM side. After completing the client copy we are not able to replicate the materials that already exist in MM to SRM which we were able to copy in earlier client. Pls advice what
-
Hello, I have a report that shows the actual and forecast information for a particular month. Now my users want a report that shows the same information year-to-date (YTD) When I changed the time period to YTD my report went into error. I am guessing
-
MBP 1.83,No audio in WindowsXP
I installed bootcamp on my MBP 1.83 & WindowsXP Pro w/o problem,but could not get audio to work(no speaker icon in system task bar)anyone has this problem?