Total Posts or Current On Line Posts?

Tuttle, Dennis, et al.
I notice that the number of posts under my handle are a "puny" six.
I thought in the "old days" the number of posts in the adjacent column was your total posts. I have ~1,400 posts.
Does the new software reflect current on line posts or is my count in the adjacent column starting over because of the the new Software?
My profile does reflect the proper aggregate number.
Thanks,
Canoe
3 MacBooks, 2 GHz, 2 GB; 2 AEBS, 1 AXBS   Mac OS X (10.4.8)  

Hi, again, Canoe -
Yes, online posts are displayed in the sidebar to the left under our names where total points were once displayed.
My profile does reflect the proper aggregate number.
It's actually a little bit off. The total number of posts in our Profiles reflects our total posts at the time of the last change of forum software, but due to an accounting issue, the number of posts we had online at the time of the last change was inadvertently added together with our total posts, thus the number of total posts displayed in our Profiles overstates our real totals.
You would have to have some record of how many posts you had online at the time of the changeover to know with any certainty how many posts you'd need to subtract from the total that shows in your Profile to arrive at the true number.
You might also notice that at the time of the change in software, the number of points required for each level as well as our point totals were doubled with points being rounded to the nearest five, as the present software only doles out points in increments of five.

Similar Messages

  • Total Posts reset to Zero

    I've been waiting since changeover to determine if this issue was going to resolve itself. Since there has been tweaking in this area; but it seems all is quite now, so I should mention this.
    I'm a level three, but since changeover my total posts are sitting at zero. Also some of my profile info was blanked out too. Some but not all.
    Will there be a resolution to this?
    Thanks, Alan

    What is showing as your "Total Posts" are really what used to be called "Posts Online". So if you haven't posted in a while this would not be surprising. The actual total posts as well as your point totals are being remembered but not displayed.
    Here is an announcement they made:
    http://discussions.apple.com/ann.jspa?annID=12

  • Account total balance does not equal line item balance

    Hi,
    I find one account total balance diff with its line item balance? What could be the reason?
    Thanks

    I have seen this before in an account which was designated as a retained earnings account - prior year rolls into the account are not a posting in the conventional sense.
    Hope this helps!
    Regards
    Louise

  • Programmatically determine OC4J instances currently on-line via OPMN or ?

    Hello,
    I am using OAS 10.1.3.1 and am wondering if there is a programmatic way (e.g. MBeans, web service call, etc.) via Java that I can interrogate OPMN (or any other OAS component) for what it understands to be the collection of OC4J instances that are currently on-line? While my mod_oc4j.conf file may enumerate them, I would prefer to be able to check programmatically at run time which of those configured instances are actually on-line, whether they be accepting requests or unresponsive.
    If there is a means via OPMN or otherwise, is it expected this type of information will be programmatically available via WebLogic once OAS/OC4J is no longer supported?
    Thanks,
    Doug

    Hi Michel,
    Sorry for the delay in my response. If there is an MBean browser, that must mean there are MBeans lying around somewhere, so yes, that is a solution I would consider using. I found some relevant information on Chintan Shah's blog (http://chintanblog.blogspot.com/2007/12/it-is-all-about-jmx-i-worked-on-jmx.html) regarding JMVServiceURL examples of how you could query those MBeans as a client of an MBeanServer.
    I also found that Enterprise Manager can be used to expose additional identifying information that can be further used to interrogate the MBeans in terms of examples.
    I may attempt this approach in the near future, so thanks for that tip.
    Regards,
    Doug

  • Running Total and In Current Year Columns Source

    Hi all,
    What is the source for Running Total and In Current Year Columns from Absence Detail Screen.
    From Which tables can I get the information on those columns.
    Thanks in Advance

    Hello,
    I am still struck with Running Total Column
    When i fetch running total using this query it works for some of the employees
    SELECT SUM(ABSENCE_hours) from PER_ABSENCE_ATTENDANCES where person_id = <your person id> and absence_attendance_type_id = <your absence type id>
    As there are three different cases here as Days,Hours and No Balance
    I am missing the logic again here when it comes for no balance and days
    Thanks

  • What is system variable to find the current list line in list processing

    hi
    what is system variable to find the current list line in list processing

    Hi,
    Please find below the system variable related to list processing
    LILLI    INT4     10     Processing lists       List line selected
    LINCT  INT4     10     Creating lists           Page length in a list
    LINNO INT4     10     Creating lists            Current line
    LINSZ  INT4     10     Creating lists          Line width in a list
    LISEL  CHAR     255     Processing lists       Contents of the chosen line
    LISTI    INT4     10     Processing lists       Index of the chosen list
    Thanks,
    Muthu.

  • How I activate, when in code view current code line, to be highlighted (all line) eg light-blue ?

    How I activate, when in code view current code line, to be
    highlighted (all line) eg light-blue ?

    Actually, in Windows (XP) the highlight color (in DW8) is a
    byproduct of the
    color scheme you set for your desktop.
    Walt
    "Michael" <[email protected]> wrote in message
    news:gn7fpk$hbp$[email protected]..
    > In code view, click the line number in the left margin
    corresponding to
    > the line of code you wish to highlight. Left click that
    number and the
    > whole line will be highlighted in blue.
    >
    > Michael
    >

  • Trap the currently executing line number?

    Hi,
    how can one get the number of the currently executing line of code?
    Like what is generated when there are compilation/runtime errors.
    I saw LineNumberReader() & getLineNumber() but they seem to be for reading files or a jpanel (I think).
    thanks,
    HSC

    ok, with all your help I managed to get this:
                //----------------- stack trace for debugging ------------------           
                StackTraceElement[] e = new Throwable().getStackTrace();
                StackTraceElement stack[] = e;
                // stack[0] contains the method that created the exception.
                // stack[stack.length-1] contains the oldest method call.
                // Enumerate each stack element.
                //for (int i=0; i<stack.length; i++)
                int i=0;
                String filename = stack.getFileName();
    if (filename == null) {
    // The source filename is not available
    String className = stack[i].getClassName();
    String methodName = stack[i].getMethodName();
    boolean isNativeMethod = stack[i].isNativeMethod();
    int line = stack[i].getLineNumber();
    System.out.println(
    " >>className =" + className +
    " >> methodName =" + methodName +
    " >> line = " +line
    // } //end-for
    //----------------- stop stack trace for debugging ------------------
    Still don't quite understand it all but considering I've been learning java on my own for about 3 weeks I figure I'm doing better than a lot of newbies. - I am frustrated as hell, but I don't give up!
    thanks.
    Note: anyone looking for code examples you can look at: "The Java Developers Almanac 1.4" http://javaalmanac.com/

  • Detect blue email reply at the current selected line

    Hi all,
    I want to detect whether a blue email reply line (see picture below) is at the current selected line and do some action. Is this possible to detect it? I think observing the ParagaphFormat of the current selection could be work.
    Jens

    Hi jfrederich,
    In addition to Eugene's reply, you can get the paragraph's Borders property, check the sub-properties of this property to determine if this selected paragraph has some blue border line:
    Outlook.Inspector inspector = Globals.ThisAddIn.Application.ActiveInspector();
    Outlook.MailItem currentOpenedMail = inspector.CurrentItem as Outlook.MailItem;
    Word.Document doc = currentOpenedMail.GetInspector.WordEditor as Word.Document;
    string s = doc.Application.Selection.Text;
    //doc.Application.Selection.ParagraphFormat.Reset();
    Word.Paragraph para = doc.Application.Selection.Paragraphs[1];
    Word.ParagraphFormat format = para.Format;
    Word.Borders borders = format.Borders;
    //check properties of borders variable to determine if this paragraph has some blue left border
    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.

  • Getting Current Source Line Number

    I am pulling my already sparse hair out trying to perform the most remedial of tasks: I am trying to trace my code execution to debug it and to log error messages, which is done in C with something like the ubiquitous
    'printf ("%s:%d\n", __FILE__, __LINE__);'
    I can't for the life of me find anything like __FILE__ and __LINE__ in Java.
    How do I determine the current source line number??? I could live without the __FILE__ part if I had to, but the line number is imperative. Where do I get it?
    Thanks,
    Bill Rebey

    "debug" still being a hard work in Java... the oldest Java nightmare :^)))
    you may avoid this problem using labels in your code (the problem you must fill your code with debug stuff - if the code is a big one, you will get crazy about that :^) )
    or you may adopt a tool able to trace your code execution....
    JBuilder do it for you...
    Togheter is another good software available out there
    (unfortunatelly, both of them are really expensive...)
    I don�t remember now about other tools.. (the java has a flag to produce debug output - check in the forum about the debug syntax....)

  • Totals Posting for A/R & A/P

    Hi
    Our client has a requirement in which the A/R & A/P Posting in the reconciliation account should be created only for the totals and not the line items as is created. How can the same be mapped?
    MB

    Hi,
    In my opinion, this requirement cannot be met, because SAP (R/3) has its own limitations. SAP is an OLTP (Online Transaction Processing System) and line items are much for auditing and statutory purposes.
    If you want only totals, I would suggest to implement Business Intelligence (BI).
    BI is an OLAP (Online Analytical Processing System) where you can do multi dimensional reporting.
    Regards,
    Ravi

  • Open asset acctng year in closed FI fiscal year - asset not totally posted

    Hello Friends,
    In January we have closed 2010 in finance but Asset accounting year remained open.
    Now I have an asset with planned depreciation in 2010 which was not posted. Now I can't close asset accounting for 2010.
    I have read about SAP note 29694 and program RACORR20_A in the forum, but I'm not sure about it's consecuences. Can't I just delete the planned depreciation in 2010, close the year and set an unplanned depreciation for the same value in 2011?
    Thanks in advance.
    Juanma.

    Hi Juan
    You have 2 choices, one of which you have identified already
    a. Note 619969 - This will let you post dep in 2010... This will change balance in your FI books
    b.Note 29694 - If you dont wanna post anything in 2010 due to legal issues, then use the program mentioned in the note and this will make Posted dep = Planned Dep
    Advisable is Note 619969 of the two
    br, Ajay M

  • Total Posts missing

    I just realized that the number of my posts is wrong. I know I had over 60 and now only 3 are listed. Do I have any recourse to get these back? I know I was a Level 2 before. Thanks
    iMac 450 DV+, iBook 600   Mac OS X (10.4.3)  

    Hi ~Bee,
    (thank you for the encouragements elsewhere)
    Hi George,
    "...the number of posts now only indicates the number of posts since the new system" plus the number of posts that were still online before the switch.
    We don't see the prior posts yet, but on the other hand the number of posts now just grows and no old post gets regularly deleted anymore like before.
    Good day!
    Axl

  • Total monthly cost (broadband AND line rental)

    Hi, I'm really struggling with how to find out what my total monthly bill is for the BT package I have (monthly charges, in full, don't seem to be on MyBT). I need to speak to an actual person - does anyone have a number to call which gets you through to a person? Thanks
    Solved!
    Go to Solution.

    try live chat  
    live chat
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • MR11 diferrence in total and sum value of line items

    Hello
    MR11 was run and it was exported to excel - it is found that there is a difference in value between the total figure given under the indivudual  lines and the amount got by adding all the line items of the difference values. Can somebody please explain why this happens
    The total figure matched with another report taken outside SAP

    Export to word

Maybe you are looking for

  • Miro and Unplanned Delivery costs

    Hi guru In my scenarious the system distribute unplanned delivery costs among the invoice items: Unplanned delivery costs are distributed among the invoice items in proportion to the total invoiced values in the current invoice. My problem: If in Mir

  • Add or remove job dynamically in Quartz Scheduler using c#

    Hi, is it possible to add ,update, remove jobs and trigger to quartz scheduler dynamically.just like reading from database and add jobs and trigger to scheduler .Or using a GUI to add ,edit and remove the jobs and triggers to scheduler while schedule

  • Oracle DB & PB ----invoke Webservice

    Hi Friends, I am facing a problem in invoking xi webservice from Oracle DB. My Oracle Version is 8.0 and a Power bulider (5.0)on the top of DB both of this are not supporting webservice. My requirement is to trigger an application from PB or oracle w

  • HT201364 how do I upgrade to the OS X Maverics?

    How do I ugrade to the OS X Maverics?

  • Crash During Update From Full Disk

    I was updating from 10.4.2 to 10.4.3. My disk filled up while doing this, and I could not empty the trash. The update stalled, and after several hours of letting it sit there, I held the power button five seconds to turn it off. The computer will not