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

Similar Messages

  • Subscript beyond count error

    Hi I've tried the following code but getting the error subscript beyond count error
    create or replace procedure test(
                                       p_srrce               in   DIM_AD.DE%type,
                                       p_date         in   varchar2,
                                       p_asset_id       in   DISET.PE_ID%type,
                                      p_nt_id              in    FAT_T.DT_ID%type,
                                        chek_status                         out varchar2,
                                       logs_dat                        out varchar2
    IS
    TYPE da_list  IS  TABLE OF FAT_T.DT_ID%TYPE;
    TYPE pd_list  IS TABLE OF FAT_T.pd%TYPE;
    TYPE v_txt_list  IS TABLE OF FAT_T.v_txt%TYPE;
    TYPE ttime_list IS TABLE OF FAT_T.ttime%TYPE;
    type t_rowid IS TABLE OF rowid INDEX BY binary_INTEGER;
      v_d_srce             varchar2(222);
      v_prdat        date ;
    no_d_eep exception;
         v_da_list  da_list ;
         v_pd_list  pd_list ;
         v_v_txt_list  v_txt_list ;
         v_ttime_list  ttime_list ;
         v_rowid  t_rowid ;
    BEGIN
      v_d_srce             :=   trim(p_srrce);
      v_prdat       :=   to_date(trim(p_date),'mm/dd/yyyy');
        DBMS_OUTPUT.PUT_LINE ( 'value v_prdat '||v_prdat );   
    ------   After executing this procedure the output statemnt has come till here after the got the error subscript beyond count
      SELECT     
                     DT_ID,
                  pd,
                    v_txt,
                      ttime
                       fdp.ROWID
              bulk collect  into  v_da_list , v_pd_list ,v_v_txt_list , v_ttime_list,v_rowid            
                  FROM
                       FAT_T
                 WHERE   
                        pd = NVL(p_asset_id ,pd)
                       AND DT_ID = NVL(p_nt_id ,DT_ID)
                       AND pedt=v_prdat ;
      FOR i in    v_da_list.first .. v_da_list.last     LOOP
          DBMS_OUTPUT.PUT_LINE ( 'Values are '||v_da_list(i) );
      END LOOP ;  
         EXCEPTION
        END;
    Please help in this

    Hi,
    it's hard to reproduce without having your data at hand.
    Is it possible for you to reproduce the error with a table having few rows?
    Can you post CREATE TABLE and INSERT statement for FAT_T table?
    How many rows do you have in FAT_T table?
    The error 6533 literally has this explanation:
    The SUBSCRIPT_BEYOND_COUNT Exception (ORA-06533) occurs when a program references a nested table or varray element using an index number larger than the number of elements in the collection.
    So I can only think that it occurs if you are trying to use an index larger than your table.
    That's why I said your original code could have had a problem in the LOOP part in case the query was not returning any row.
    But actually in case the array was empty you would get another error in the loop (ORA-06502: PL/SQL: numeric or value error)
    I saw that your array type are all nested tables except t_rowid which is an associative array using BINARY_INTEGER as index.
    This index can be up to 2^32. So unless you have a very high number of rows (more than 2.15 billions) you should not get this error.
    I can suggest to check 2 things:
    How many rows does your SELECT statement returns?
    Comment the exception block to see exactly which line is throwing that error.
    Post some sample data to reproduce your problem
    Actually if I try to do something similar in my environment using EMP table I don't get any error (if my select returns rows):
    SQL*Plus: Release 11.2.0.1.0 Production on Thu Nov 7 12:22:28 2013
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL> DECLARE
      2     TYPE t_empno IS TABLE OF emp.empno%TYPE;
      3     TYPE t_ename IS TABLE OF emp.ename%TYPE;
      4     TYPE t_hiredate IS TABLE OF emp.hiredate%TYPE;
      5     TYPE t_sal IS TABLE OF emp.sal%TYPE;
      6     TYPE t_rowid IS TABLE OF ROWID
      7                        INDEX BY BINARY_INTEGER;
      8
      9     v_empno        t_empno;
    10     v_ename        t_ename;
    11     v_hiredate     t_hiredate;
    12     v_sal          t_sal;
    13     v_rowid        t_rowid;
    14
    15  BEGIN
    16     SELECT empno, ename, hiredate, sal
    17          , ROWID
    18       BULK COLLECT INTO v_empno, v_ename, v_hiredate, v_sal
    19          , v_rowid
    20       FROM emp;
    21
    22     FOR i IN v_empno.FIRST .. v_empno.LAST
    23     LOOP
    24        DBMS_OUTPUT.put_line ('Values are ' || v_empno (i));
    25     END LOOP;
    26  END;
    27  /
    Values are 7369
    Values are 7499
    Values are 7521
    Values are 7566
    Values are 7654
    Values are 7698
    Values are 7782
    Values are 7788
    Values are 7839
    Values are 7844
    Values are 7876
    Values are 7900
    Values are 7902
    Values are 7934
    PL/SQL procedure successfully completed.
    SQL>
    Regards.
    Alberto

  • Subscript beyond count error varray

    create or replace type t_var_type is varray(20) of varchar2(2000);
    create or replace procedure p_test(in_arr t_var_type) is
    v_send varchar2(2000);
    begin
    --in_arr := t_var_type();
    for i in 1..in_arr.count loop
    if in_arr(i) is not null then
    if v_send is null then
    v_send := in_arr(i);
    else
    v_send := v_send ||'|'|| in_arr(i);
    end if;
    end if;
    end loop;
    dbms_output.put_line('v_send: '||v_send);
    end;
    DECLARE
    v_t t_var_type;
    BEGIN
    v_t := t_var_type();
    dbms_output.put_line(v_t.count);
    -- v_t.EXTEND(2);
    dbms_output.put_line(v_t.count);
    v_t(1) := NULL;
    v_t(2) := 'A';
    dbms_output.put_line(v_t.count);
    v_t(3) := NULL;
    -- v_t(4) := 'C';
    -- v_t(5) := NULL;
    p_test(v_t);
    END;
    when i run the above block
    1. I get subscrip beyond count error
    question:
    where in the code should I extend the varray in the stored procedure to overcome this ?

    Hi,
    user650888 wrote:
    Thank you, stand alone procedure works, but if I just add two more input parameters and package it, While testing the procedure, I declare another varray
    and calling it. I get invalid argument call to procedure error
    create table table4(col1 varchar2(100), col2 varchar2(100));
    create or replace package mytest
    is
    TYPE t_var1_type IS VARRAY(20) OF varchar2(2000);
    procedure p_test(col1 in table4.col1%type, col2 in table4.col2%type, in_arr in t_var1_type);
    end mytest;
    / ...You may have noticed that this site normally doesn't display multiple spaces in a row.
    Whenever you post formatted text (such as query results) on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.
    Now to test the above p_test, I am using the below. Note I am declaring new varray to test it, Is that the issue ? When I call the packaged procedure, I get
    invalid argument error
    DECLARE
    TYPE t_eg_type IS VARRAY(20) OF varchar2(2000);
    v_t t_eg_type;
    BEGIN
    v_t := t_eg_type(NULL,'A',NULL,'B','C',NULL,NULL,NULL,'C',NULL,NULL,NULL);
    mytest.p_test('a', 'b', v_t);
    END;
    /You have declared two separate datatypes:
    (1) mytest.t_var1_type (that is, a type called t_var1_type, defined within the package mytest) and
    (2) t_eg_type
    These are 2 distinct datatypes.  You can't use one in places where the other is expected.  It doesn't matter how similar the definitions of the 2 datatypes are, they remain 2 separate datatypes. 
    The procedure mytest.p_test is expecting 3 arguments, the 3rd of which must be a mytest.t_var1_type.  No other data type will work, no matter what it's definition.  That argument must be a mytest.t_var1_type, or else you'll get the error "PLS-00306: wrong number or *types* of arguments ..." when you compile the call.
    Since mytest.t_var1_type is exposed in the package spec, anyone who can use the package can use that data type.  So to use the package, you might write an anonymous blokc like this:DECLARE
    v_t mytest.t_var1_type;
    BEGIN
    v_t := mytest.t_var1_type (NULL, 'A', NULL, 'B', 'C', NULL, NULL, NULL, 'C', NULL, NULL, NULL);
    mytest.p_test ('a', 'b', v_t);
    END;

  • XML Publisher post-processing error 'java.io.FileNotFoundException'

    Hi,
    We are getting following XML Publisher post-processing error while running XML Publisher report.
    It was working earlier but suddenly its erroring out.
    [9/07/10 9:00:17 PM] [OPPServiceThread1] Post-processing request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Executing post-processing actions for request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Starting XML Publisher post-processing action.
    [9/07/10 9:00:18 PM] [39177:RT559655]
    Template code: XXHPOXPRRFLR
    Template app: XXH
    Language: en
    Territory: 00
    Output type: PDF
    [9/07/10 9:00:18 PM] [UNEXPECTED] [39177:RT559655] java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:274)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:173)
    [9/07/10 9:00:18 PM] [39177:RT559655] Completed post-processing actions for request 559655.
    Please help me out to resolve this issue.
    Thanks & Regards,
    Sagarika

    Hi,
    java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)Most probably this file is not created (since no changes have been done recently, so definitely it is not a permission issue), and if there are any log files generate at the client side it should help in investigating the issue.
    Thanks,
    Hussein

  • POSTING PERIOD ERROR WHILE DOING GR

    Dear All,
    I am facing error in posting period while doing GR -
    1) Posting period 007 2010 is not open - For current date GR
    2) Posting only lies in periods 2010/07 and 2010/06 in Company Code - For future date in 2010-08
    3) Posting period 006 2010 is not open - For back date GR in 2010-06
    Checked T Code MMRV - Ticked -  Allow posting in previous per. (Still facing the same error)
    Also as per MMRV -
    Current period  07 2010
    Previous period  06 2010
    Last period in prev. year 12 2009
    Please guide
    Vikas

    Hi,
    Check on it:-
    COGI Posting period error
    Re: Error in Opening the Posting Period.
    http://www.sap-img.com/sap-sd/movement-type-posting-error-in-delivery.htm
    pherasath

  • IDOC is posting with Errors in File to IDOC scenario

    Hi,
       I did the File  to IDOC scenario for CREMAS  . IDOC is posting with Errors .. i.e. in the status record it was showing  56- EDI: Partner profile inbound not available  ..
    If I manually process that IDOC in WE19 , then it was processing successfully..    and in the  we19 it was showing Inbound Processing : Port Not Maintained    but even though manually it was posting fine...
    any ideas regarding this will be appriciated..... 
    Regards
    Babu

    Please check whether you had done the following assuming your doing File to Idoc
    Settings in your Business service for the receiving system
    Please specify the RFC detination, SAP System and Client of the Receiving System in the adapter specific detials.
    Settings in R/3
    WE20 - Add the partner profile for the particular message type cremas and process code.
    Your statement
    " and that same logical system name  had given as Message Specific Attributes in the Sender Business Sevice parameters in I.D "
    Please do mention R/3 Details in the receiver business service or system.
    Thnz

  • Recurring "Invalid volume directory count" error

    Hi everyone!
    I'm hoping that someone can shed some light on this issue, because I'm just about to lose my mind trying to figure it out!
    I manage a small companies' network of approximately 35 Apple Macintosh computers. All the computers are newer 2009 or later MacBook Pros and 2009 or later iMac running Mac OS 10.5.8 or 10.6.6.
    A small number of computers persistently report one or more "Invalid Volume Directory Count" errors whenever I perform a Verify Disk check in Disk Utility roughly once per month. The errors are always easily corrected by booting the computers from their system CDs and then performing a Repair Disk and/or executing an fsck command in single user mode. Unfortunately, the problem recurs the very next time I check the affected computers' disks.
    One particular user whose computer had always exhibited this problem recently received a new 2010 MacBook Pro 15, and now THIS computer exhibits the problem as well! Even more baffling, and just to be certain I avoided copying any damaged Library component from the old computer's drive, I didn't use the Apple Migration Assistant to migrate this user's hard drive to the new computer; rather, I performed a clean installation of all the applications and then copied his data to the new user account. Once again, Disk Utility reported the same error the very next time I performed a Verify Disk scan on the new computer's drive.
    All staff use the same applications, and most of the other computers do not exhibit this problem.
    I'm completely stumped by this problem! HELP
    Message was edited by: psiciliano

    Hi Thomas!
    Thanks for your advice!
    I doubt that the drives are dying for the following reasons:
    1. The computers are fairly new
    2. I do check the SMART status every time I perform monthly diagnostics, and the affected units' drives always report back ok
    As for backing them up, I will certainly attempt do so more frequently.
    I have to believe that the problem must be caused by the way in which the affected users handle their computers; although when I ask them, they always assure me that they properly shut down and/or restart their computers.
    As for the possibility that a program may be causing the issue, since everyone in this company uses the same software, I would expect this problem to affect considerably more systems than it presently does.
    I will continue to troubleshoot this problem and (hopefully) discover its cause once and for all.
    It's these sorts of problems that will one day do me in...career-wise, anyways.
    Pietro

  • While excise posting, an error is coming "Balance in Transaction  Currency"

    Dear all
    While capital excise posting, an error is coming "Balance in Transaction  Currency" for the capital goods posting.
    During the excise duty posting J1IEX our clint done some manuvall entry for excise duties so
    at the time its 0.01 diffrence is coming in balance thats why we are not able to post the document.
    so please can any one give the solution for this
    regards
    pramod

    hi
    Check Excsie duties in "Excise Duty" Tab at Item Details level.
    Kindly note that all the duties (BED, ECS and SECess) in case of RG23C Part II posting must be in EVEN numbers.
    For e.g. Check whether SECess is 10.63 (ODD No) then make it either 11.00 or 10.64 or 10.62 i.e. EVEN No otherwise during Part II posting it will always show balance of 0.01
    Check how much piase is the difference. Then you can decide how many values to be rounded off.
    To avoid this type of problem better to ensure all amounts ( BED, Ecess and Hr Ecess) are in Even figures.
    hope it clears
    regards
    kunal

  • 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.

  • LSMW  IDoc error : APPLICATION DOCUMENT NOT POSTED with error 51

    During LSMW matmas04 uploading i m getting error :APPLICATION DOCUMENT NOT POSTED with error 51
    Can some one tell why ots coming so.

    to check errors check We05 or we02 they are same 
    in general i think that most of problem is relate to Dates if that your case check that you converted dates to internal format using conversion step i advice use like this function
    CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
    EXPORTING
    DATE_EXTERNAL = ZHEADER-BEDAT
    IMPORTING
    DATE_INTERNAL = MBEPOH-BEDAT.
    <Removed by Moderator>
    Message was edited by: Marcelo Ramos

  • 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.

  • Invalid Volume Free Block Count Error In Disk Utility

    My Ti-Book has been acting very strange lately so I decided to run the Verify Disk Option in the Disk Utility program. When I ran it, I got a series of messages in red that were:
    Volume Bit Map Needs Minor Repair
    Invalid volume free block count
    Error: The Underlying Task reported failure on exit
    When the verify disk function completed, I was asked to enter my administrator password. When I entered it and clicked on Okay, the Disk Utility program froze up and I had to restart.
    What do the two error messages mean? How do I repair my disk?

    Hi, WTM. The Verify Disk routine in Disk Utility is almost never worth running. It does the same error-detection tasks as the Repair Disk routine, but then it doesn't repair any errors that it finds.
    Start up from your Tiger installer DVD, open Disk Utility, select your hard drive, and run the Repair Disk routine. If you get the same "task reported failure on exit" message, you'll need a stronger directory-repair utility like DiskWarrior, or you'll need to erase your hard drive completely and reinstall everything on it.

  • Post-Install Error on EBS 12 - Login Page Error RW-50016 on Linux

    Hi All,
    Post-Install Error on EBS 12 - Login Page Error RW-50016 on Linux
    Thanks in advance.

    set hostnme correctly

  • Counting errors occured in personnel number (0HR_PT_2)

    When loading data in BW with extractor 0HR_PT_2 we find the following message in the applicationlog:
    'counting errors occured in personnel number....'
    This problem causes the upload in BW to 'hang'in yellow status and the administrator must manually start the next staging (-> ODS en --> cube)
    What also strikes as a bit strange is that the personnel-number in question doesn't belong to the selected CO-area in the infopackage
    Anyone a clue?
    Lex Meijerink

    Hi,
    I've found this note that might be helpfull for us.
    Note 800049:
    Summary
    Symptom
    You are using time management datasources 0HR_PT_1/2/3 for extracting data from R/3. During extraction the message 023 from the message class HRTIM00DW may occur in the protocol. This is an application warning message explaining that the error happened in the application processing part of extraction. This problem should be corrected through changing the application customizing appropriately.
    If you want to change the category of this message from "warning" to "information", please implement the correction instruction from this note. This correction is a modification and the change will not be delivered with the next service package and is not in the standard. Therefore, please implement the correction instruction manually. If in the future you want the message category to be changed back to "warning" then please take the change back.
    Other terms
    0HR_PT_1, HRTIM00DW 023, 023, 0HR_PT_2, 0HR_PT_3
    Reason and Prerequisites
    Modification
    Solution
    Please implement the correction instruction manually. If in the future you want the message category to be changed back to "warning" then please take the change back.
    David

  • 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.

Maybe you are looking for

  • HP Photosmart 6525 Printing issue

     I was away for a family emergency for 7months went to print and nothing happend figured they dried out.  Replaced all ink,  Test print works on color but black is light color.  When I go to print a document it is all blank including color & black.

  • Adhoc Query Join Problem

    Hi All, I have created a query on PNP logical database which looks very simple, Lets say it has pernr, first name, last name, and Mailing ZIP on the output. P0006-SUBTY = 'MAIL' Now, the problem is .... if someone do not have mailing address subtype

  • Remove RSS subscribe button from Iweb 08

    How do I remove the RSS feed button from some of my pages/photo galleries in iWeb 08? I also noticed that my navigation bar does not show up in Dreamweaver CS3. The navigation bar would show up fine in the old iWeb. Is there a compatibility issue wit

  • Kerberos, vnc, and ssh

    Hi, I was wondering if anyone had seen these problems trying to enable vnc and ssh support on a Mavericks server (latest OS and Server versions). In particular, I get errors when I attempt to use sso_util:o_util - sso_util configure -R MYSERVER.MYDOM

  • Schema level health checkup ?

    what are contents or parameters comes under schema level health checkup ?