Appropriate Usage of Note Board

I've used the Note Board web part on the welcome page of a document set in our environment, and it is starting to gain some traction with our users.  There are now some cases where users would like to be able to use the Note Board to comment on items
in a regular list.  I noticed that it is possible for me to add the NB web part to, for example, the DispForm.aspx of a content type in a list, but I'm skeptical of whether it's meant to be used that way.
I guess my question boils down to whether it's a supported practice to use a Note Board web part on forms.  It may be a dumb question, but I'm just not used to treating forms and regular web part pages.  But it appears to
be working fine so far...
EDIT: I asked another follow-up question below.  Hopefully it's okay for me to do that without creating a new thread.

I'd have thought that the comments on the noteboard wouldn't have been item specific but it turned out I'm wrong! 
This guy did it, so I think you'll be fine for what you wan to do: -
http://www.sharepointbreak.com/2012/10/28/sharepoint-2010-ootb-note-board-web-part-in-library-item-display-form/
Thanks for finding that article for me. Looks like it's definitely an option!
I have noticed some odd behavior with it so far, though.  It seems that at least in some cases the NB uses the item name rather than ID to associate notes with items.  I've had a couple of instances where, when an item is deleted, then another
item is created with the same name, the old Notes appear on it.  There's some potential for that to be a problem, but I'm not too worried about it in my case.

Similar Messages

  • IPhone 6 Battery Usage setting not working.

    When I go to my setting and check my Battery Usage setting it states: "Battery information will be available after using iPhone for a few minutes". I've been using it for hours and I get the same response when I go to the setting. I've turned off my phone multiple times to see if that would resolve it, but it hasn't. Is anyone else experiencing this behavior?

    Hello.
    I have the same problem. iPhone 5, iOS8.0.2, used for a few days - still no usage statistics, only "Battery information will be available after using iPhone for a few minutes".
    I tried restore iPhone (DFU) without restoring backup from iCloud/iTunes, resets, hard-resets, erase all settings, drain battery to 0% and charge to 100% overnight etc. - nothing helps.
    I wrote to the Apple about this problem.
    Here is the page that you can use to contact with Apple and report a bug - https://www.apple.com/feedback/iphone.html
    Please, give the title of "iOS8 battery usage statistics not working" (or something like that), choose the "Bug ​​report" and describe the problem. Perhaps it will make that Apple will eliminate this problem in the next version of iOS. More report - greater chance.
    Regards 

  • IPhone 6 Battery Usage function not working

    Battery Usage feature continues to read; "Battery information will be available after using iPhone for a few minutes" even though I have now had the phone and used it for one week. Using iPhone 6, 64G, IOS 8.0.0.(no iOS updates have yet been applied) 
    A few days ago I attempted some suggestions posted by others. One of those was to let the battery drain to zero then fully charge. This had no affect on the Battery Usage feature. Another suggestion that i tried was to close all open apps on phone, then shut down phone and then turn back on. This did not resolve the Battery Usage issue either.
    Is apple aware of this issue? Any help would be appreciated.

    Hello.
    I have the same problem. iPhone 5, iOS8.0.2, used for a few days - still no usage statistics, only "Battery information will be available after using iPhone for a few minutes".
    I tried restore iPhone (DFU) without restoring backup from iCloud/iTunes, resets, hard-resets, erase all settings, drain battery to 0% and charge to 100% overnight etc. - nothing helps.
    I wrote to the Apple about this problem.
    Here is the page that you can use to contact with Apple and report a bug - https://www.apple.com/feedback/iphone.html
    Please, give the title of "iOS8 battery usage statistics not working" (or something like that), choose the "Bug ​​report" and describe the problem. Perhaps it will make that Apple will eliminate this problem in the next version of iOS. More report - greater chance.
    Regards 

  • How do you know what the data usage was for and why?  It shows you date and usage but not the reason.

    How can you see what data usage was for on the bill?  It only shows the date and usage but not the reason for the usage.

    You can not see this info on VZW's site. There are apps for smartphones that will break down the info though, but by site or what was downloaded

  • How to add the Note board web part to a page with powershell

    Hi everyone,
    I've been looking around everywhere but haven't seen it explicitly mentioned. 
    Does anyone know how to add the Note Board web part to a Team Site page, e.g. Non-publishing site, Left Zone, First webpart in the zone in powershell?
    Examples like this one http://adicodes.com/adding-web-part-to-page-with-powershell/ only talk about custom web parts uploaded from a local drive.
    The example here looks good - http://spcrew.com/blogs/lists/posts/post.aspx?id=21 but is it for the Page Viewer Web Part. How would you go about getting the correct name for the note board web part and configuring it? 
    Many Thanks,
    Ashley
    function main(){
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $url = "http://sp2010dev1/sites/test1"
    $OpenWeb = Get-SPWeb $url
    $OpenWeb
    $OpenSite = Get-SPSite $url
    $file = $OpenWeb.GetFile("http://sp2010dev1/sites/test1/SitePages/test1.aspx")
    $WebPartManager = $file.GetLimitedWebPartManager([System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    Add-PageViewerWebPart "http://sp2010dev1/sites/test1" "http://sp2010dev1/sites/test1/SitePages/test1.aspx" "Body" 0 "SPCrew Site" "sp2010dev"
    $OpenWeb.Dispose()
    function Add-PageViewerWebPart($SiteURL, $pageUrl, $webpartzone, $index, $title, $content)
        $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
        $web=$site.OpenWeb()
        $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
        $webpart = new-object Microsoft.SharePoint.WebPartPages.PageViewerWebPart
        $webpart.ChromeType = [System.Web.UI.WebControls.WebParts.PartChromeType]::TitleOnly;
        $webpart.Title = $title
        $webpart.ContentLink = "http://www.spcrew.com";
        $webpartmanager.AddWebPart($webpart, $webpartzone, $index);    
        $web.Close()
        $site.Close()
    function Get-SPSite([string]$url) {
        New-Object Microsoft.SharePoint.SPSite($url)
    function Get-SPWeb([string]$url) {
        $SPSite = Get-SPSite $url
        return $SPSite.OpenWeb()
        $SPSite.Dispose()

    Hi,
    According to your post, my understanding is that you wanted to add the Note board web part to a page with PowerShell.
    The name of the Note Board web part is SocialCommentWebPart.
    I recommend to use the powershell code below:
    $pageUrl="http://sitename/SitePages/test.aspx"
    $SiteURL="http://sitename"
    $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
    $web=$site.OpenWeb()
    $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    $webpart = new-object Microsoft.SharePoint.Portal.WebControls.SocialCommentWebPart
    $webpart.title="Note Board"
    $webpartmanager.AddWebPart($webpart, "MiddleZone", 0);
    $web.Close()
    Then the Note board web part will be added to the page.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Note Board web part to display comments for explicit Document Set

    I guess my question falls under 'Other customization' hence my post here.
    Scenario:
    I have a Document Set content type enabled for a library. At the moment I have a few "folders" [document sets] that contain their respective documents.
    I edited a Document Set welcome page to include a Note Board web part. I edited the Note Board web part by adding a 'URL for note' to be a URL of a random Document Set welcome page while in edit mode.
    (Basically, I went to a 'ABC' document set page, clicked edit page, copied URL from address bar, closed that page, went to 'Customize Welcome Page' for all document sets in that library, edited Note Board web part by pasting the link into its 'URL for note'
    field) 
    Problem:
    Currently, all comments are shared between all document sets (folders). When I go to 'ABC' document set and post a comment, I can see my ABC specific comments in e.g. 'XYZ' document set.
    I want to have comments specific to each document set displayed on a respective page for that document set.
    Solution?
    I realize that I must have gotten an URL for a Note Board web part wrong and it does not filter comments explicit to each document set but fetches the comments from whole the library. My url is currently:
    https://intranet.domain/sitecollection/library/Forms/Machine%20Process%20Pack/docsethomepage.aspx?ID=2&FolderCTID=0x0120D520009EDF2E3A3112B041AC6EC1D4133D77550000C297D6CB32E349A435E04924DC6C58&List=7b052f9c-7e35-4251-b66d-3bcdd2950014&RootFolder=%2Fuk%5Fqhse%2FProcess%20Packs%2FSigma%202345&RecSrc=%2Fuk%5Fqhse%2FProcess%20Packs%2FSigma%202345&PageView=Shared&InitialTabId=Ribbon.WebPartPage&Visi
    I know I have to strip this URL from some parameters, presumably leaving just ID, FolderCTID, List and RootFolder.
    Could someone actually tell me exactly how my URL should look like if I want to display comments only for a given document set on its welcome page?
    Thanks!

    Hi,
    According to your post, my understanding is that you wanted to display comments only for a given document set on its welcome page, not display for all the document sets.
    If so, you should not set the “URL for note” field in the Note Board web part, you can just leave it blank, then when you post a comment in one document set, the others would not display the comment.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • BT Infinity Usage Monitor not updating.....hmmm???

    This happens at the end of every month.  I'm starting to think it is an actual ploy from BT to stop users from knowing how much broadband usage they have left?  The usage monitor normally starts acting up around the 25th of every month....then you get an odd day where it works then it then it stops updating completely.  This leaves a BT user in a vunerable position.
    A, Scared of using Internet - Not wanting a penalty charge by going over your limit!
    B, Not allowing the BT user to use their full amount of data that they are paying for = saving BT money = ripping us off!!!
    SORT IT OUT BT.......IT'S JUST NOT GOOD ENOUGH.

    A lot more in this thread regarding the usage monitor,
    http://community.bt.com/t5/BT-Infinity/BT-Infinity-Usage-Monitor-not-updated-today/td-p/616958
    Regards,
    Frogman

  • OBIEE 11g - Usage Tracking Not Working

    Dear All,
    I have enabled the usage Tracking in OBIEE 11g by using Setting up Usage Tracking in Oracle BI 11g guide.
    Still i am getting the following error
    Usage Tracking not started due to non-existent Usage Tracking table "12-Usage Tracking"."Usage Tracking Schema"."S_NQ_ACCT".
    In my RPD,
    Database Name : "12-Usage Tracking"
    Physical Schema Name : "Usage Tracking Schema"
    Physical Table Name : "S_NQ_ACCT"
    This table reside under BIPLATFORM Schema in Oracle.
    I have followed the steps mentioned in the Document, still unable to find why getting such error. Please point out if any mistake exists.
    Please advice.

    Hi,
    Good for you.
    Maybe you can post the solution and how you solved your issue to help other users having the same problem and then close the thread (currently it's still This question is Not Answered.)

  • HT1476 why does the battery usage percentage not available in ios5.1.1???

    why does the battery usage percentage not available in ios5.1.1???
    and why is clock not available on ipad????

    Because that is a decision the Apple made.  You can get the battery percentage (within 5%)  by using a free app such as BatteryLife Lite, but it will not show the percentage on the top of your screen.

  • Need some help with: implement email notification on note board within a page layout (javascript)

    Dear all,
    I have a quite specific issue in which I'm in need of some guidance and help!
    Within our SharePoint I have created a custom page layout. This is a simple page to post some content (news) and a standard Note Board is implemented.
    Every time a news item is placed, this is done by our communication departement, this page with standard layout is placed as a page in a page library. When there are no comments on that particular item/subject I found a solution to replace the standard SharePoint_no_posts-text
    by placing a contenteditor web part in the Page Layout with a reference to a textfile with some javascript in it. This works perfectely.
    The only thing left is that I want to automatically send an email to the contact (which is defined when making the news item) everytime someone posts a new comment. Here is where I need some help!
    We don't really use mysites so I was wondering if someone could tell how I could do this by for example some code (javascript) which I can implement in the Page Layout.
    Can anyone help me?
    Thanks in advance,
    Gr Matt

    Try below code:
    function sendMail() {
    var link = 'mailto:?subject=insert subject line&body=';
    var curntLoc=window.location.href;
    link +=escape(curntLoc);
    window.location.href = link;
    // window.location.href = link;
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9cfe7884-fc9e-4c7c-a44c-f740d2edcafc/sending-email-using-javascript-in-sharepoint-2010
    Also check below:
    http://spjsblog.com/2010/06/16/send-email-with-javascript-with-the-help-of-a-workflow-in-a-dedicated-send-email-list/

  • CS5 - "quicktime and/or the appropriate codec do not appear"

    Hey everyone,
    I'm trying to import a video file created in FCP7 into Encore CS5 to make a blu ray.
    I've exported my video as a 1080p/24 ProResHQ quicktime (NOT a QT reference, but the full contained QT file), and every time I try and import it into Encore I get the error "quicktime and/or the appropriate codec do not appear to be installed"
    I've seen some threads talking about how the solution was to not make it a refernce file, or use a non QT codec, but since neither of those restrictions apply here, I'm stumped.
    I'm running CS5 on a Mountain Lion 10.8.1 brand new installation of everything.
    Any suggestions?
    thx!

    Read Bill Hunt on a file type as WRAPPER
    http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    Report back with the codec details of your file, use the programs below
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/

  • Is there an app for monitoring CELLPHONE usage? (Not data, calls, SMS, etc.)

    Hey! Is there an app for monitoring CELLPHONE usage? (Not data, calls, SMS, etc.). I know there's for data, but I wanna know if there's one that keeps track of calls, SMS, etc.
    Thanks!

    Unless O2 has an app available via the iTunes app store that provides for this as AT&T does for the iPhone sold in the U.S., I don't believe so.
    The iPhone includes a usage indicator for Call Time and Cellular Network Data usage, which can be reset on a monthly basis based on your billing cycle, but there is no usage indicator for the number of messages sent or received.

  • HT204407 Find my friends Icon disappeared after upgrade to ios 8. I tried restarting as well as reinstalled the app but its not working. I can find it in Usage, but not in spot light. Pla help!!j

    Find my friends Icon disappeared after upgrade to ios 8. I tried restarting as well as reinstalled the app but its not working. I can find it in Usage, but not in spot light. Pla help!!

    I have exactly the same problem on a 4S on iOS 8. Have tried uninstalling, deleting FMF from backup, resetting phone and restoring from backup, but the problem remains. Sometimes the icon appears on a backup Home screen in iTunes, but it never appears on the phone itself. The app is accessible by going to the store, purchases and opening it from there. The app appears to have been running the whole time, but becomes invisible anytime I return to the home screen.

  • Applying security to Internal Content of Note Board

    Hello Techies,
    I am using Note Board Web Part in on of my application. Now my requirement is to apply security on that web part as some of the user will be able to write or insert the note in it but they will not be able to see it and some user will not be able to insert
    not in it but they will be able to see it. 
    Please can anyone help me on this?
    Thanks in Advance
    Swap

    Hi SwapnPro,
    Do you mean, that some users can use the post dialog to submit posts, then he/she cannot see the posts below the submit dialog in the web part? Whiles other can see the posts, but cannot use the post submit dialog?
    If so, in my opinion, if it is used in one page, use JavaScript/JQuery is easier to do this, add Content Editor Web Part, in the page load, JavaScript check current user account, if it is in the group that not allowed to see the posts, then hide the posts
    part div, otherwise, for users that cannot submit the post, add action to posts button, disable to submit the post.
    If I have misunderstanding, please provide more information what the web part would like.
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Quicktime and /or the appropriate codec do not appear to be installed.

    Could not import file ....... .mov. QuickTime and /or the appropriate codec do not appear to be installed.
    Quicktime is indeed installed and the files play fine in other programs.  I have same setup on another laptop and all is ok. I am trying to determine the problem..

    Read Bill Hunt on a file type as WRAPPER
    http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    Report back with the codec details of your file, use the programs below
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/

Maybe you are looking for

  • Forced to "upgrade" for more $$$ and now my FIOS speed is crippled.

    On Wednesday of this week, I was happily using my FIOS 20/5 service with no problems when I realized my annual agreement for the TV/Internet package was about to expire so I proactively called Verizon to renew for another year of service. The agent t

  • Error while running fs_clone in EBS R12.2.3

    Hi., We have recently Cloned EBS R12.2.3(AD and TXK Delta 4). After few hotpatches on the system, we tried fs_clone and getting the below error. Our architecture is single node DB and Single node application. The below is the known error for multiple

  • Installation of Oracle 8.1.7 on SUse 8

    I try to install oracle 8.1.7 server on a linux suse 8.0, following the oracle's instrucions. but when i try to run the runInstaller happen this error: someone can help me please? thank bye bye oracle@linux:/cdrom> ./runInstaller oracle@linux:/cdrom>

  • Cannot determine all dependent dynamic libraries for /proc/self/exe

    Each time I start Oracle XE i writes this entry in the alert log as the first thing: Wed Jun 14 23:45:45 2006 Starting ORACLE instance (normal) Cannot determine all dependent dynamic libraries for /proc/self/exe The open() system call failed for the

  • Audio not transferring to Encore from Premiere Pro CS6

    I'm trying to export a sequence through the Adobe Dynamic Link from Premiere Pro CS6 to Encore and the audio is not transferring with video. The video is 30 minutes long with multiple video and audio tracks. The video came through fine, but no audio