Total no. of Posts count - reset

Hi,
My total no. of posts count has been reset and from today morning the count started from "1".
Pls Help !!
Regards,
Sridhar

Hi Divya, 
Thanks for your post.
Try to get fields count in collection using below code snippet:
TfsTeamProjectCollection tfs =
new
TfsTeamProjectCollection(new
Uri("collectionURL"));
tfs.EnsureAuthenticated();
WorkItemStore workitemstore = tfs.GetService<WorkItemStore>();
FieldDefinitionCollection fields = workitemstore.FieldDefinitions;
// get fields count in this collection
Console.WriteLine(fields.Count);
//get each field name
foreach(FieldDefinition
field in fields)
Console.WriteLine(field.Name);
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Posting count

    I lost nearly 500 previous postings and my posting count did start at 0 two months ago.
    Is this a problem only of my account, or had all discussion members to restart at 0?
    Thanks!!
    Andreas

    But it did work for years, didn't it? There are thousands of Mac forums able to count the posts. If at Apple Discussions they are not able to show the post count, they should simply omit it!"
    A large number of problems this time around are caused by the fact that Apple has switched forum software from Web Crossing to Jive. The Jive forum software has a slightly different feature set and some of the features common with Web Crossing are implemented differently. While Web Crossing easily allowed posting cumulative post counts, Jive is set up to display online post counts, so the developers either have to construct a work-around or they have to wait for Jive to add the ability to display cumulative counts.
    Custom avatars is another feature that supported by Web Crossing but not by Jive, although Jive has said they expect custom avatars to be added in an upcoming update or upgrade.
    While switching to Jive will be beneficial in the long run, the switch has caused short-term problems, and the developers are working on them. Although the new forum was tested before launch, including some users, there was no way they could test it under full load. When the new forum did go live under full load, there were some serious performance issues and these were the issues that the developers concentrated on.
    Finally, omitting post counts has been suggested in the past (as well as not displaying or even getting rid of levels), even when the cumulative counts were given and I know of forums that have stopped displaying counts, including some that could display the actual totals.

  • Post Count

    Interesting..... Wonder what happened to my post count? lol...
    I'm back to 1 when I posted on the Safari beta forum.

    Hi OddsNEnds!
    Your User Profile shows you have 42 Total Posts, and 2 Total Posts Online.
    ali b

  • My post counts is wrong

    Now that the Forums speed problem is solved for me, I'll ask a question I meant to ask since we changed to the Jive Forums.
    My post count was reset to zero when we switched to Jive" Clearspace. Is there a way for the Admins of these Forums to "recover" my real post count since 2002?
    I remember, I changed my screen name at that time to ReneG, would it have cause that?

    Claudio González wrote:
    I remember there was a long period during the trial phase in which we were asked to do something (I forgot what) to pass the information from our previous to our new account. Probably, this means that the information is gone for ever by now.
    Yes, I remember that too. And I did it (whatever it was); and I remember at the same time I did that thing, I changed my screen name.
    I can see if I had changed my email address, I would probably loose the old counts, but I didn't change it.

  • Case Wainting for Counter Reset Since Thursday Oct 2

    Please Help!
    I followed the instructions in the tech notes section and submitted a case to request to have my activation counter reset.
    Case #0180457329 ID: [email protected] E-mail: same
    I have assignment due tomorrow and exams next week.
    I desperately need assistance so I can read my E-book.
    Thank you very much in advance for your assistance with my issue.
    John

    We're working on speeding this process up, but it's taking time.. Sorry..
    I took over the case and reset your activations.
    However, the problem will most likely continue. If you have a chance to do some startup item troubleshooting on that user profile (as described in the technote) please do. And if you can find what's causing the problem please post back here.
    Regards,
    Bentley Wolfe
    Senior Support Engineer, Flash/Flash Player/Digital Editions
    Adobe

  • Curious change in post count...

    For the longest time, my "Total Posts" was exactly one number higher than my "Total Posts Online". I understand why this is and that is not what I am asking.
    Today, I looked and my "Total Posts" and "Total Posts Online" are dead even.
    Did an old post get bumped back into the system somehow?

    Hi Phil,
    After the last change to new forum software, there was an offset in post count that could be significant to people who had a lot of posts under the previous version. I think my offset was about 230 posts more than I really made. In the last couple of months, they seem to have corrected this as my current post count is more in line with reality. It's possible that, in the process, some newer accounts saw a little correction too.

  • How to get total number of result count for particular key on cluster

    Hi-
    My application requirement is client side require only limited number of data for 'Search Key' form total records found in cluster. Also i need 'total number of result count' for that key present on the custer.
    To get subset of record i'm using IndexAwarefilter and returning only limited set each individual node. though i get total number of records present on the individual node, it is not possible to return this count to client form IndexAwarefilter (filter return only Binary set).
    Is there anyway i can get this number (total result size) on client side without returning whole chunk of data?
    Thanks in advance.
    Prashant

    user11100190 wrote:
    Hi,
    Thanks for suggesting a soultion, it works well.
    But apart from the count (cardinality), the client also expects the actual results. In this case, it seems that the filter will be executed twice (once for counting, then once again for generating actual resultset)
    Actually, we need to perform the paging. In order to achieve paging in efficient manner we need that filter returns only the PAGESIZE records and it also returns the total 'count' that meets the criteria.
    If you want to do paging, you can use the LimitFilter class.
    If you want to have paging AND total number of results, then at the moment you have to use two passes if you want to use out-of-the-box features because LimitFilter does not return the total number of results (which by the way may change between two page retrieval).
    What we currently do is, the filter puts the total count in a static variable and but returns only the first N records. The aggregator then clubs these info into a single list and returns to the client. (The List returned by aggregator contains a special entry representing the count).
    This is not really a good idea because if you have more than one user doing this operation then you will have problems storing more than one values in a single static variable and you used a cache service with a thread-pool (thread-count set to larger than one).
    We assume that the aggregator will execute immediately after the filter on the same node, this way aggregator will always read the count set by the filter.
    You can't assume this if you have multiple client threads doing the same kind of filtering operation and you have a thread-pool configured for the cache service.
    Please tell us if our approach will always work, and whether it will be efficient as compared to using Count class which requires executing filter twice.
    No it won't if you used a thread-pool. Also, it might happen that Coherence will execute the filtering and the aggregation from the same client thread multiple times on the same node if some partitions were newly moved to the node which already executed the filtering+aggregation once. I don't know anything which would even prevent this being executed on a separate thread concurrently.
    The following solution may be working, but I can't fully recommend it as it may leak memory depending on how exactly the filtering and aggregation is implemented (if it is possible that a filtering pass is done but the corresponding aggregation is not executed on the node because of some partitions moved away).
    At sending the cache.aggregate(Filter, EntryAggregator) call you should specify a unique key for each such filtering operation to both the filter and the aggregator.
    On the storage node you should have a static HashMap.
    The filter should do the following two steps while being synchronized on the HashMap.
    1. Ensure that a ConcurrentLinkedQueue object exists in a HashMap keyed by that unique key, and
    2. Enqueue the total number count you want to pass to the aggregator into that queue.
    The parallel aggregator should do the following two steps while being synchronized on the HashMap.
    1. Dequeue a single element from the queue, and return it as a partial total count.
    2. If the queue is now empty, then remove it from the HashMap.
    The parallel aggregator should return the popped number as a partial total count as part of the partial result.
    The client side of the parallel aware aggregator should sum the total counts in the partial result.
    Since the enqueueing and dequeueing may be interleaved from multiple threads, it may be possible that the partial total count returned in a result does not correspond to the data in the partial result, so you should not base anything on that assumption.
    Once again, that approach may leak memory based on how Coherence is internally implemented, so I can't recommend this approach but it may work.
    Another thought is that since returning entire cached values from an aggregation is more expensive than filtering (you have to deserialize and reserialize objects), you may still be better off by running a separate count and filter pass from the client, since for that you may not need to deserialize entries at all, so the cost on the server may be lower.
    Best regards,
    Robert

  • UDF Using Dynamic Configuration for Counter Reset

    Hi All,
    In an Idoc to file scenario we want to have counter option at the end of the file.we are using NFS so that we wil not face any problem of counter reset on a j2ee restart
    But when the counter turns 999999 it has to be reset to 0000001
    So we are trying to dynamically create a file name using the counter and check whether it has reached 999999 then resetting back . I had written a code for the same but it is throwing an error while mapping and activating.
    UDF CODE is below
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION) ;
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File", "FileName") ;
    String FileName = conf.get(key) ;
    int inc = 1 ;
    String temp = FileName.substring(10,6);
    String temp1 = FileName.substring(0,10);
    Integer seqNo = Integer.parseInt(temp) ;
    if(seqNo == 0 || seqNo == 999999) {
    seqNo = new Integer(inc) ;
    else {
    int num = seqNo.intValue() + inc ;
    seqNo = new Integer(num) ;
    container.setParameter("seqNo", seqNo);
    String File_Name = temp1 + Integer.toString(seqNo);
    conf.put(key, File_Name);
    return File_Name;
    ERROR it is throwing
    'class' or 'interface' expected public String Decimal$(String Sample,Container container){ ^ /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpath_resolver/Map76d12330b43811df8c1500e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_TRGT_.java:127: 'class' or 'interface' expected }
    So can anyone please advice.

    Hi Stefan,
    I removed the last }
    But stil it is throwing the below error:
    Activation of the change list canceled Check result for Message Mapping MM_Sample_to_Trgt | :  Starting compilation  Source code has syntax error:  /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpath_resolver/Map8e67b780b44111dfbc4100e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_Trgt .java:98: FileName is already defined in File$(java.lang.String,com.sap.aii.mappingtool.tf3.rt.Container) String FileName = conf.get(key) ; ^ /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpathresolver/Map8e67b780b44111dfbc4100e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_Trgt .java:102: incompatible types found : int required: java.lang.Integer Integer seqNo = Integer.parseInt(temp) ; ^ /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpathresolver/Map8e67b780b44111dfbc4100e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_Trgt .java:103: operator == cannot be applied to java.lang.Integer,int if(seqNo == 0 || seqNo == 999999) { ^ /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpathresolver/Map8e67b780b44111dfbc4100e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_Trgt .java:103: operator == cannot be applied to java.lang.Integer,int if(seqNo == 0 || seqNo == 999999) { ^ /usr/sap/PJD/DVEBMGS58/j2ee/cluster/server0/./temp/classpathresolver/Map8e67b780b44111dfbc4100e000a6fabc/source/com/sap/xi/tf/_MM_Sample_to_Trgt .java:111: cannot resolve symbol symbol : method toString (java.lang.Integer) location: class java.lang.Integer String FileName = temp1 + Integer.toString(seqNo);
    Edited by: mallavarapu soundarya on Aug 30, 2010 4:44 PM

  • Is there any way to recover (or even view) my contact list / phone book post factory reset?

    Is there any way to recover (or even view) my contact list / phone book post factory reset?

    I've not failed to do that.  The contact list on my Mac is from my phone, not my wifes phone (which is the troublesome one).  I restored it to last backup and it is back but I am not certain the problem will be fixed.  Time will tell.  My question is how to get her phones contact list back post reset...just the contact list.

  • Post Count not Displaying Correctly

    My post count was somewhere over 2000+ posts before the forum change and now it's 1/10th of that at 289... another poster, I see, has over 200,000 which seems rather skewed. If the web developers who did the change can verify the post counts with a simple query of the actual records based off my user account then they'll see the actual record count doesn't match the number showing up for me under a post.

    Um... Yeah, thanks for the reassurance Mr. Smarty Pants. I guess I was not clear enough for the non-technical minded among us... Using my own account as an example I was trying to point out that there's still a bug with the way the new forums query the data from the database and it's an easy test to run a query based on the number of actual records that come up for my user account... the physical record count should be 2000+ and not 280.
    As well, it's very difficult with this current forum format to tell that I'm not logged into it... I was showing as logged into the general Adobe site as indicated at the very top-left of the site by the 'Welcome Chunick', but apparently I wasn't logged into the forum section which was indicated by a Login/Register line of text just below the black Forums header that was in a light blue which was not only hard to catch, but also not indicative that I need to login to the Forums separately which is new with the new forums. Now it seems pretty clear since I worked it out, but it was a bit confusing at first, to be sure.

  • "E_ACT_TOO_MANY_ACTIVATIONS or Adobe Activation Request Error 2004," contact us to have the activation count reset.

    "E_ACT_TOO_MANY_ACTIVATIONS or Adobe Activation Request Error 2004," to have the activation count reset.

    "E_ACT_TOO_MANY_ACTIVATIONS or Adobe Activation Request Error 2004," contact us to have the activation count reset. Can someone help please

  • Total No. of Post Decrease.

    Hi,
    My total posts when i was check last time 2181 before One Week.
    and now today my total no of post is 2161 "01-july-07".
    Please could you tell me what wrong with my total no.of posting.
    Please Feedback
    Thanks & Regards
    Taj

    Hi,
    Thanks for response.
    but problem is still exists my post contiune decrease.
    Hope OTN administration staff solve this problem soon.
    Regards
    Taj

  • Post Counting Error

    Three posts, perhaps more, to different threads and on different days, were numbered as the same post:
    password management in oracle
    Posted: Dec 1, 2007 3:17 AM
    Posts: 1,585
    Questions after 9.201 to (9.208+CPU #13) upgrade
    Posted: Nov 30, 2007 1:45 AM
    Posts: 1,585
    sql script to check oracle server settings
    Posted: Nov 30, 2007 9:18 PM
    Posts: 1,585
    Many other duplicates exist as well. Any chance this can be fixed and the posts renumbered? Thank you.

    Three posts, perhaps more, to different threads and
    on different days, were numbered as the same post:
    J-Integra
    92097&tstart=0
    Posted: Dec 1, 2007 3:17 AM
    Posts: 1,558
    J-Integra
    91754&tstart=0
    Posted: Nov 30, 2007 1:45 AM
    Posts: 1,558
    J-Integra
    91898&tstart=0
    Posted: Nov 30, 2007 9:18 PM
    Posts: 1,558
    Many other duplicates exist as well. Any chance this
    can be fixed and the posts renumbered? Thank you.If I correctly understood your concern then it is total number of posts not any post number.
    Go to your contro panel->Your public Profile and there you'll see the same number under title Total posts :)
    Gints Plivna
    http://www.gplivna.eu

  • TBB4 Any way to post only reset?

    Hi Experts:
    Any way to post only the reset of a TBB4?
    My Client went live on 01.01.12. They have migrated account balances including accrued interests as part of its assets and liabilities at 31.12.11 (they have even uploaded gains and losses cause their closing balance date is 30.06.12)
    They have decided to run TBB4 every month with reset.
    They have already uploaded all the TRM transactions at that date (31.12.11)
    Now they need to reverse on 01.01.12 the acrrued interests calculated via old systems
    So a good idea is to run for all transactions uploaded the TBB4 with key date 31.12.11 but only to post the reset.
    Any solution?
    regards
    Claudio

    Hi,
    You can mark the accrual update types as not relevant for posting and the reset update types as relevant for posting and run TBB4.  After posting, you can mark the accrual update types as relevant for posting for the next accrual run onwards.
    Regards,
    Ravi

  • Need phone number to get authorization count reset. adobe reader on nook not working right

    Need phone number to get authorization count reset. Adobe reader on nook freezes up. Only fix is to send to cloud and then redownload. Keeps happening even after got replacement nook! Unfortunately this is ONLY program to get library books on my nook. Help

    Sorry, that was a mistake. I did first one and nothing happened, thought I did it wrong and that it had not gone through. This is the first time I tried this.
    Sent from my NOOK

Maybe you are looking for

  • I've downloaded music to my iphone but it says there is no content in music

    I don't know why i cant find my music in my iphone. it shows as being in my phone in itunes but is dull, not bright writing.  I go to music and it just says no content.  Can anyone help me please.

  • Gneral ledger Report- Remarks Problem

    Hi I am placing Some remarks in Incoming / Outgoing Payment, that has to come in general ledger report so it will be very easy to identify what kind of Entry this. This we can do it by placing In Journal remarks , But problem is It is 50 Characters o

  • Trapped With Fusion Order Demo Deployment Problems.

    I have the impression that this FusionOrderDemo_R1PS1 is not sufficiently tested for deployment in different types of environment. Prove it wrong by advising whats wrong on my configuration based on the build output below: pino Buildfile: C:\JDevelop

  • Why is my downloaded font "greyed out"

    I am wanting to add a font to my font book that I downloaded; however. when I look it up, no matter where I put it, it appears greyed out and unselectable. neddless to say, as it stands I can't add the font due to this problem. Any thoughts?

  • JDeveloper and Netbeans ebooks

    Can anyone help me out by sending me ebooks on JDeveloper (Beginners, Intermediate and Advance) and Netbeans (Beginners, Intermediate and Advance) to my email [email protected] I so much more need them to start using JDeveloper and Netbeans as a prof