Alert on Changeset Comments

How do you set an alert so you and the person who checked in get an email with the changeset comments?
I added comments to a changeset, and person who checked in, didn't get any email about it, I have to tell them where the comment is so they can read it.

Hi Jeckie,
Thanks for your post!
You can use Comments checkin policy in TFS Power Tools. 
After you installed TFS Power Tools, you connect to TFS from Visual Studio, in the Team Explorer, click
Settings, under the Team Project, click Source Control, in the Source Control Settings dialog, select
Check-in Policy tab, and click Add button. From the check in policy list, select Changesest Comments Policy, and click
OK.
For more information, please refer to
http://blog.clauskonrad.net/2010/08/tfs-2010-how-to-force-comments-when.html
and
http://blogs.msdn.com/b/bharry/archive/2012/09/15/tfs-2012-power-tools-are-now-available.aspx
Hope it helps!
Best Regards, 
Cathy Kong
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • Email alerts on Changeset Comments

    How do you set an alert so you and the person who checked in get an email with the changeset comments?
    I added comments to a changeset, and person who checked in, didn't get any email about it, I have to tell them where the comment is so they can read it.

    Hi Kyle, 
    Thanks for your post.
    What’s the version of your TFS?
    The default check-in alert will shows like below, we can see the check-in comment next to the changeset number, and received alert user can click the
    Changeset67 hyperlink to open this changeset 67’s details in Web Access, if user want to view the comments in the edited file(s), he need click that hyperlink to open changeset details in Web Access, then view changes in edited file. Or user need view
    history in VS>>Source Control Explorer, and find the right changeset according the changeset number in alert, then view this changeset’s details in VS. 
    Changeset 67: this is changeset comment alert test
    Summary
    Team Project(s):
    JTest-Scrum2013.4
    Checked in by:
    User name
    Checked in on:
    3/24/2015 1:26:36 PM
    Comment:
    this is changeset comment alert test
    Items
    Name
    Change
    Folder
    Program.cs
    edit
    $/JTest-Scrum2013.4/SolutionCase/ProjectCase

  • Can i add a sound alert or message when someone comments on a pic of a photo stream when i am only another participant (not owner of the photstream)?

    Hi,
    How can i add a sound alert or message when someone comments on a pic of a photo stream when i am only another participant (not owner of the photstream)? Thank you. Joana

    Joana,
    that should be automatic.
    See: http://help.apple.com/iphoto/mac/9.4/#pht884a8908
    When you like or comment on a photo in a shared stream, a notification is sent to all the Apple devices of the photo stream’s creator and subscribers. You can delete comments you added to a photo by placing the pointer over the comment and clicking the Delete button that appears.
    Usually the problem is the other way round - how to prervent spamming all subscribers to a shared stream from being alerted to each comment on a photo in the stream. Quite a few subcribers have cancelled their subscriptions to shared streams, because they have continously been sent alert messages and could not disable them. It can get rather annoying - there is no way to silently add a few comments to photos and then send only one alert.

  • How to read a CLOB file and select only one of the node

    i have table with one of it's datatyp as CLOB, i need to read one particular node alone,
    Ex
    Table tesxml has two columnd id,xml and the xml field is a CLOB which has data as shown below.
    <?xml version="1.0" encoding="UTF-8"?>
    <alert>
         <type0 comment="section in XSL component" name="Initial Information">
              <details>     
                   <Priority>0001</Priority>
                   <Date>2010-06-29</Date>
                   <Initial_Information></Initial_Information>
              </details>
                      </type0>
    </alert>now i need to select id,<Date value(from xml)>,<comment value>
    o/p should look like
    0000,2010-06-29,section in XSL componenti tried these queries but i am doing something wrong with the syntax..
    SELECT alert_internal_id,EXTRACTVALUE(VALUE(c), '/Date') datee
      FROM (SELECT id,xmltype(xml) xml FROM tesxml),
           table(XMLSEQUENCE(EXTRACT(xml, '/alert/type0/details/'))) c;
    select dbms_lob.read(HTML_FILE_KEY,alert,type0,details,Date) from alerts

    Depakjan wrote:
    No that is not the case if i just remove the where statement it's workingWell, based on your query, you don't seem to have a repeating group, so I'm guessing your XML looks something like the following:
    SQL> ed
    Wrote file afiedt.buf
      1  with alerts as (select 1 as alert_internal_id,
      2  '<alert>
      3    <tab0 comment="bob">
      4      <details>
      5        <Priority>1234</Priority>
      6      </details>
      7    </tab0>
      8    <type0>
      9      <details>
    10        <DateVRUClaimInitiated>01/02/2010</DateVRUClaimInitiated>
    11      </details>
    12    </type0>
    13  </alert>' as xml from dual)
    14  --
    15  select alert_internal_id,x.* from alerts, xmltable ('.' passing XMLTYPE(xml)
    16               columns prio varchar2 (5) path '/alert/tab0/details/Priority',
    17                       dt varchar2 (15) path '/alert/type0/details/DateVRUClaimInitiated',
    18                       type_comment varchar2 (25) path '/alert/tab0/@comment') x
    19* where x.dt is not null
    SQL> /
    ALERT_INTERNAL_ID PRIO  DT              TYPE_COMMENT
                    1 1234  01/02/2010      bobHowever, let's assume you do have a repeating group of alerts (I'll achieve that by putting them inside a "root" element), and I'll set one of them so there is no dt returned...
    SQL> ed
    Wrote file afiedt.buf
      1  with alerts as (select 1 as alert_internal_id,
      2  '<root>
      3    <alert>
      4      <tab0 comment="bob">
      5        <details>
      6          <Priority>1234</Priority>
      7        </details>
      8      </tab0>
      9      <type0>
    10        <details>
    11          <DateVRUClaimInitiated>01/02/2010</DateVRUClaimInitiated>
    12        </details>
    13      </type0>
    14    </alert>
    15    <alert>
    16      <tab0 comment="jim">
    17        <details>
    18          <Priority>2222</Priority>
    19        </details>
    20      </tab0>
    21      <type0>
    22        <details>
    23          <DateVRUClaimInitiated />
    24        </details>
    25      </type0>
    26    </alert>
    27  </root>' as xml from dual)
    28  --
    29  select alert_internal_id,x.* from alerts, xmltable ('root/alert' passing XMLTYPE(xml)
    30               columns prio varchar2 (5) path '/alert/tab0/details/Priority',
    31                       dt varchar2 (15) path '/alert/type0/details/DateVRUClaimInitiated',
    32                       type_comment varchar2 (25) path '/alert/tab0/@comment') x
    33* where x.dt is not null
    SQL> /
    ALERT_INTERNAL_ID PRIO  DT              TYPE_COMMENT
                    1 1234  01/02/2010      bob
    SQL>That works ok for me. Database = 10.2.0.1
    What version are you on?

  • RoboHelp Providing the Locking with TFS

    I am doing a test with RoboHelp 7 using TFS as version control. I know that you can make TFS lock files so that you cannot have multiple authors check them out at the same time.
    My problem however is that the source files for RoboHelp are in the same project as our developer's code. This means that if we change the TFS to have an exclusive lock then the developers would have to also have an exclusive lock on their files which they do not want.
    Is there a way that RoboHelp can lock the files when checking them out?
    Thanks,
    Emma

    I'm looking for a solution but my problem is slightly different. I'm running Visual Studio 2012 (update 4) and RH10.  When I installed the 32 bit MSSCCI Provider, the TFS option became available (the 64 bit provider was ignored).  Now I get an error on check-in citing "Trouble with TFS power tools".  The details says there was an "Error loading the Changeset Comments Policy policy".  I have tried installing both the 2010 and 2012 TFS Power Tools (combinations of one, the other, both) but still get the same error.
    Thanks!
    Thomas

  • Upadting a XML node value to another table

    Hi guys,
    Can you please tell me, what is wrong with the below query
    update csabcd cs set (cs.ELEMENT,cs.ELEMENT2,cs.ELEMENT3) =
            (select x.* from abcde a, xmltable ('.' passing XMLTYPE(a.xml)
                 columns mort1 varchar2 (80) path '/alert/tab1/details/Element',
                         mort2 varchar2 (80) path '/alert/tab1/details/Element2',
                         mort3 varchar2 (80) path '/alert/tab1/details/Element3'
                         ) x  where cs.aid = a.aid);i get this error
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00229: input source is empty
    Error at line 0
    ORA-06512: at "SYS.XMLTYPE", line 254
    ORA-06512: at line 1Edited by: Depakjan on Oct 21, 2010 1:35 PM

    Well from that sample, the XMLTABLE works ok...
    SQL> ed
    Wrote file afiedt.buf
      1  with abcde as (select '<?xml version="1.0" encoding="UTF-8"?>
      2  <alert>
      3    <tab0 comment="section in XSL component" name="Initial Information">
      4      <details>
      5        <Priority>0001</Priority>
      6        <DateVRUClaimInitiated>2010-06-29</DateVRUClaimInitiated>
      7      </details>
      8      <contacts comment="grid in XSL component">
      9        many child nodes here
    10      </contacts>
    11    </tab0>
    12    <tab1 comment="section in XSL component" name="Additional Information">
    13      <details comment="list collection in XSL component">
    14        <Channel1>123</Channel1>
    15        <Element>1234</Element>
    16        <Element2>1234</Element2>
    17        <Element3>1234</Element3>
    18      </details>
    19      <IPAddresses>
    20        Many child nodes here
    21      </IPAddresses>
    22      <ANIPhones>
    23        Many child nodes here
    24      </ANIPhones>
    25    </tab1>
    26  </alert>' as xml from dual)
    27  --
    28  --
    29  --
    30  select x.*
    31  from abcde a
    32      ,xmltable ('.'
    33                 passing xmltype(a.xml)
    34                 columns mort1 varchar2 (80) path '/alert/tab1/details/Element'
    35                        ,mort2 varchar2 (80) path '/alert/tab1/details/Element2'
    36                        ,mort3 varchar2 (80) path '/alert/tab1/details/Element3'
    37*               ) x
    SQL> /
    MORT1      MORT2      MORT3
    1234       1234       1234
    SQL>There must be something else in the XML that's causing the problem.
    What happens if you just do:
    select xmltype(xml) from abcde(add appropriate where clause for particular ID if necessary)
    Is it able to convert the xml strings to xmltype ok?

  • RoboHelp 10 not integrating with TFS 2102

    Hi all,
    I'm trying to integrate RoboHelp 10 with TFS 2012 so I can use source control through it.
    I've run through this tutorial: http://www.adobe.com/devnet/robohelp/articles/robohelp-tfs-integration.html but when I go to click "Add to Version Control", I don't see TFS as a version control provider. All I get is RoboHelp SharePoint Connector.
    I've also tried modifying my registry following this topic: http://helpx.adobe.com/robohelp/kb/registry-settings-microsoft-team-foundation.html but I get the same results using that.
    I can access the TFS server through Visual Studio's Team Explorer, and I've mapped my project folder through Team Explorer's Source Control Explorer.
    I'm not sure what else I can do at this point.
    Any help anyone can provide on the matter would be appreciated.

    I'm looking for a solution but my problem is slightly different. I'm running Visual Studio 2012 (update 4) and RH10.  When I installed the 32 bit MSSCCI Provider, the TFS option became available (the 64 bit provider was ignored).  Now I get an error on check-in citing "Trouble with TFS power tools".  The details says there was an "Error loading the Changeset Comments Policy policy".  I have tried installing both the 2010 and 2012 TFS Power Tools (combinations of one, the other, both) but still get the same error.
    Thanks!
    Thomas

  • Collaborating on shared files

    In Adobe Cloud, Files > Activity, when commenting on a design, how are shared users of the file alerted of the comments so that a timely response is possible?

    File Hosting, Syncing, and Collaboration may have more information
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Adding CC to email event__click

    Hello,
    I have been searching for some time to try and find a way (that works) to add email(s) to the CC: line of the email message. I have the following script:
    <
    event activity="click" name="event__click"><
    script contentType="application/x-javascript">if (Comments.rawValue != null){RealEmail.event__click.submit.target = "mailto:" + "[email protected]" + "?cc=" + "[email protected]" + "?subject=" + "Some subject";
    RealEmail.execEvent("click");
    } else {
    app.alert("Please add comments!");
    </
    script></
    event>
    Which returns the subject line in the CC line along with the email address listed for the CC line.
    Does anyone know how to add both the cc and subject to a event__click?
    Thanks in advance for any solutions!
    Chad

    The property of the submit button is:
    RealEmailButton.event__click.submit.target
    = "mailto:" + DropDownList1.rawValue + "?subject=" + Subject.rawValue;
    You wont be bale to put code on that button so I would hide the real button, then put a fake regular button on the dform. You can script on that one. On the click event adjust the submit.target code to the values that you want. Then use the command:
    RealEmailButton.execEvent("click")
    to cause the real submit button to click and execute.
    Make sense?
    Paul

  • Seeking comments about managing Oracle's Alert log

    Good morning,
    Alert logs can often be very useful.
    I am forming the opinion that it would probably be a good idea to keep a backup of the alert logs for, maybe, a 3 to 6 months sliding window.
    I would like to know the views of the forum members on the subject of alert log backups, including how long the backups (if any) are kept. Actual practice on the subject in production environments is greatly appreciated.
    Thank you for taking the time to comment on the subject,
    John.

    Hello Asif,
    >
    Yes , may be you need to open a SR in metalink and they may ask something old incident. For this reason you need to check the old alert log content. That's why I suggest to keep the alert log for production environment for 3/4 years.
    >
    I had not thought about someone asking for an incident that would be over a year old but, I can see that on occasion having the records might be useful.
    >
    Now a days storage are cheap so it's not that critical to store the alert log files.
    >
    I completely agree. I was more concerned about managing that many logs... on the other, they are just flat files, not that hard to manage.
    Thank you,
    John.

  • Can Creative Cloud alert me when a client leaves a comment on uploaded / sync'd artwork?

    As above really, Can Creative Cloud alert me when a client leaves a comment on uploaded / sync'd artwork? When clients comment on files at the moment I get no notification of the comment I have to check the files manually which is an extra step in our work flow and not ideal.
    Thanks
    Jase

    Lucidcreationcouk, This feature is currently not available, however I guess, it is already posted as an enhancement request here.
    http://forums.adobe.com/community/creative_cloud?view=idea
    If there are more idea's that you want to put up, please post up there, we would love to hear.
    - Nitin

  • Comment email alert, is it possible?

    Hi guys,
    Is it possible to receive an email alert when comments are posted on my iweb site that is hosted on mobileme? If so how is this achieved?
    Many thanks
    Paul

    Paul ~ No, it's not possible. Instead of iWeb's blog, you may want to consider using the free, web-based Posterous which provides email notifications aswell as posting blog entries via email:
    http://blog.posterous.com/new-on-posterous-daily-and-wee

  • How can I get alerted when someone replies to my comment?

    I would really like to get a notification when someone replies to my comment in the forums. I have set my preferences to get email notifications for things I'm following but I get notifications for every time someone writes something in the forums. (I do get notifications when someone replies to my comment though. I just get way too many emails.)

    Alec
    I took a look at "Your Stuff" [Content] TAB & you seem to be consistent in the [Participated] & [Following] filters.
    You WANT to receive notices from both as well as [Authored] (de facto Participated as well as Following - any post should make you automatically Following that thread)
    If indeed a thread gets "out of hand" - which some inevitably do - you can UNfollow that thread, which will NOT remove it from the Authored or Participated filtered LISTS.
    Hope this helps - but what I see seems manageable. You can always use the delete key or in your Mail client as I do - I'd rather know about it than not.
    ÇÇÇ

  • Can we acknowledge grid alerts with comments?

    does alert stay in grid repository for long? or they deleted after x number of days?
    I wondered if its possible to attach messages to the alerts and store them for x number of years ,so incase similar incidents are raised in future other people in the team can search that alert repository and find fixes .... is such thing possible in grid? is it out of box?
    i know its possible to configure grid to raise ticket via 3rd party application ... our 3rd party system supports logging the tickets and storing them there... but i want to know if similar thing can be achieved in grid itself.

    For raing tickets to 3rd party applications you might want to take a look at the OME GC Connectors
    http://www.oracle.com/technetwork/oem/extensions/index.html#connector
    These are all based on the usage of Notification Methods
    Notification Methods allow you to create any interface you desire, using OS Scripts, SNMP Traps or PL/SQL
    http://download.oracle.com/docs/cd/E11857_01/em.111/e16790/notification.htm#BABJFFCJ
    Checkout http://download.oracle.com/docs/cd/E11857_01/em.111/e14586/monitoring.htm#EMADM9036
    for handling of alerts
    Regards
    Rob
    http://oemgc.wordpress.com

  • Bonjour, comment mettre une alerte sonore dans iphone 5 à chaque réception de mail ?

    Bonjour,
    J'ai Iphone 5 s et je sais qu'on peut mettre une alerte sonore à chaque réception de mail, mais je ne trouve pas cette action dans les réglages.
    Pourriez-vous m'aider ?
    Merci

    settings/sounds/sounds & vibration patterns then there is a choice for new mail and sent mail sounds

Maybe you are looking for

  • Limit Purchase Order Config in SRM 5.0

    We need to configure the Limit PO functionality so we can add Account Assignments that are orders. At this time, we are only able to use Cost Centers on our limit Purchase Orders. Please direct me to the SPRO location where I can change the config fo

  • HOW TO UNLOCK/RESTORE IPHONE 3

    i reciently purchased a iphone 3 and it HAS A PASSWORD ON IT. HOW O I UNLOCK OR OVERRIDE PASSWORD SO THAT I CAN RESTORE PHONE?

  • Satellite L300-11M and Hardware Upgrade

    Hi to all. I have Toshiba Satellite L300-11M, but my video card is very slow and i can't play games good. So I wanna upgrade it trought buy new video card. But i don't know is my laptopl support AGP slot or only PCI? So what;s best video card from N-

  • Generate Adobe File from J2EE container

    Hi, In the NW environment, I have an EJB which I want to use and generate a PDF document from some XDP and XML files. Is there a service available to do it (in the background without WebDynpro?) Likewise, if a user submits a form, can we call some se

  • Error compiling home interface

    I get this error when I try to compile my home interface: c:\sun\appserver\jdk\bin\javabean\InterestCalculatorHome.java:15: cannot find sy mbol symbol : class InterestCalculator location: interface javabean.InterestCalculatorHome public InterestCalcu