SRM PO deletion is not happening in R/3

Dear Experts,
we are working on SRM 5 & ECC 5.0
Once we create a PO in SRM portal same thing will get replicated in R/3.
we are facing the problem in the below scenarion
1. Created the PO in SRM portal & same got repliacted in R/3
2. We did a GR for the PO in R/3 and reversed the GR in R/3
3  Now if i try to delete PO in SRM portal its getting deleted in Portal but in R/3 deletion indicator is not appearing / not getting deleted (if we delete the PO before GR then its getting deleted both in SRM portal and in R/3)
If i saw the Alert display in RZ20 . its displaying the below error. "Evaluated receipt settlement open, deletion not possible"
Please guide me how to solve this.
Regards
Shuban

Hi,.
Go to R/3 for the P.O  go to ME22N and  untick the ERS mark in the P.O
The Error in RZ20 is
The Error is : ERS is active that is For the GR  you have to verify the invoice
Regards
G.Ganesh Kumar

Similar Messages

  • Other database delete is not working on forall statement

    Dear all,
    My scenario is , i create a program, the program fetch the data from database x and i want to delete on the same x database but i am running this program at y database, so
    so i created a view
    create or replace view vw_ibs_pda_bills_x as
    SELECT *
            FROM ibs_pda_bills_x@testarch1my program
    Declare
          CURSOR c2 IS
          SELECT *
            FROM vw_ibs_pda_bills_x
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                        Delete from vw_ibs_pda_bills_x where bill_month = vtsch(i).bill_month;
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;the program want to do the delet option for all delete is not working. The program executed successful but the operation delete is not happening
    how to solve this issue.
    please help me
    kanish

    No error encountered in my log table
    the new workaround you said, that is instead of for all , already i tried for i in 1.. to like
    instead of forall delete i tried the following way
    Declare
          CURSOR c2 IS
    SELECT *
            FROM ibs_pda_bills_x@testarch1
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                   /* fORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                     Delete from vw_ibs_pda_bills_x where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');*/
                     for i in 1..vtsch.count loop
                       delete ibs_pda_bills_x@testarch1 where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');
                     end loop; 
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;i am receiving the following error
    ORA-02055: distributed update operation failed; rollback required
    ORA-06531: Reference to uninitialized collection
    ORA-06512: at line 77
    ORA-06531: Reference to uninitialized collection
    kanish

  • I have an iphone 4 that keeps deleting my notes. How can I stop this from happening?

    I have an iphone 4 that keeps deleting my notes. How can I stop this from happening? I've had my phone over 2 years and only in the past 2 months has it started deleting notes. Now they are all deleted, but thankfully still in my email, but only on a computer.

    I guess he/she open Notes in Gmail settings. This archives (one way sync) notes in gmail account under notes label that is invisible if you are using the standard gmail setup on your iPhone. You can see it on desktop browser, Safari or gmail app in iDevice. Am I wrong?
    Sorry for bad English.

  • Ive deleted something, not sure what but my Ipod connects then disconnects. It doesnt come up on my Itunes or 'My Computer' Whatever happened, it deleted my music of my pod! Someone pleaseeee HELP!

    Ive deleted something, not sure what but my Ipod connects then disconnects. It doesnt come up on my Itunes or 'My Computer' Whatever happened, it deleted my music of my pod! Someone pleaseeee HELP!
    1. Ipod connects then disconnects
    2. Ive deleted my Itunes then d/l the new Itunes
    3. Ipod doesnt show up in Itunes
    4. Ipod doesnt show in 'My Computer'
    5. Ive reset my ipod
    6. Ive put it in Disc Mode
    & after all of that still nothing except an ipod that works but with no songs or videos!!
    HELP ME AHHH!!
    Thankyou

    Do the iPod Disk Diagnostics as posted by tt2, it wont fix your problem, but helps in troubleshooting.
    Post the results, so we will try to help.

  • I have added a website as safe for popups.when I select an item it takes me to a page that says I have been logged out. does not happen with other browsers

    I have selected my website as safe. While on the site I fill out a form, then when going to the next page to view results, Firefox says I've been logged out. I hit the back button and go back to the form fill in page. It will not take me to the page of results. This does not happen in other browsers.
    This also happens with other websites.

    Hi,
    You can consider the [https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems Reset Firefox] feature via '''Help''' ('''Alt''' + '''H''') > '''Troubleshooting Information'''.
    (To revert to the previous profile, close the new profile, start Firefox and choose the '''*.default''' profile. While the [https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles Profile Manager] is open, you can also delete the newly reset profile (the one containing random numbers)).
    [https://support.mozilla.org/en-US/kb/Managing-profiles Managing profiles]
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]

  • I have iPhone 5 IOS 8.1.2; for past 13 weeks I get message that my phone has not backed up on the cloud. Every night however the wifi is on, phone is connected to power, and screen is locked. Any idea why back-up is not happening ?

    I have an iPhone 5 IOS 8.1.2;
    for the past 13 weeks I get the message that "this phone has not been backed up on the cloud". However, every night it is connected to wifi, phone is connected to power, and the screen is locked. Any idea why back-up is not happening ? By the way, I do not have the "back up now" option in Setting / iCloud.. Help anyone ?

    Try deleting an other icloud backup and see if it will automatically backup.

  • Delete Button not active in Change PO

    Hi All,
         I looked at security and authorizations, and checked the PO status in both SRM and ECC. All seems to be ok. But not able to delete the PO line items. We are in SRM 5.0 ECS SP15.0. PO was changed, added lines and ordered and transferred to Backend as well. Now when I want to delete the PO line items, Delete button is inactive. Please advise.
    Regards
    Rao

    Hi Rao,
    Is this for all PO's?
    Deletion is not possible                                                  
       i. for the POs which are in status 'ORDERED'                           
      ii. active version of the PO for which follow-on document exists.....  
    As per the standard system behaviour, once the PO is already sent out       
    to the Vendor, the Delete button at Header will be disabled. And this       
    is the standard behavior. You can not delete the PO from the header         
    and the only option you can do is deleting the items from this PO.          
    Also, maybe try MANUALLY running update reports CLEAN_REQREQ_UP and BBP_GET_STATUS_2 which will ensure that SRM and the backend are uptodate and retest.
    Hope this helps,
    Kind Regards,
    Matthew

  • When I closed out of yahoo email, get a blank page on every tab if any are opened. I have to exit out & restart firefox . It does not happen w/any other browser.

    When I sign off on yahoo email. I get a blank page on every tab if any are opened. I have to exit out & restart firefox . It does not happen w/any other browser. I have no malware or viruses. Please advise.

    Actually, it's not obvious & common sense would dictate that users' bookmarks would not be left stuck to random computers even once they've logged out of the account. No one wants that if it's a public work computer or if they're traveling & use an Internet cafe. As I am not the only one who has noticed this issue or had bookmarks disappear/be deleted, in addition, common sense would indicate it's not really a very good system. And carrying around a flashdrive to run Firefox off of it is a good solution? Really? Just curious why a useful feature such as being able to login & use your preferences & bookmarks & then logging out removes your preferences when you're gone hasn't been developed. Yahoo keeps my preferences when I logout (it's called My Yahoo!). Maybe a My Firefox or My Chrome solution could be developed.

  • When on facebook or sites with pictures, the pctures almost look like a negative except that it's green. this does NOT happen in IE

    while on facebook pictures look like negatives but green. almost as if they were ifrared but bright green. eyes, hair, items most of the picture is this bright green. this does not happen if i go to facebook using Internet Explorer. i have deleted firefox and reinstalled over and over but it keeps reoccurring. very frustrating!!

    That's strange, I haven't heard of that one! A standard diagnostic step is to try Firefox's Safe Mode to see whether it is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [http://support.mozilla.com/kb/Safe+Mode Safe Mode] using
    Help > Restart with Add-ons Disabled
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If the photos look right, the problem most likely is an add-on or custom setting. Do you have any add-ons that modify or block images, ads, or Flash?

  • File/Folder Deletion is not working

    Hi People,
    I have the following simple POJO class in which I am trying to delete a file but its not happening can someone pls help me on this.
    import java.io.*;
    class ListFiles
    public static void main(String args[]){
    String path="C:/Documents and Settings/Desktop//Art/Notes";
    File test1 = new File(path);
    String[] children = test1.list();
        if (children == null) {
            // Either dir does not exist or is not a directory
              System.out.println("dir empty:");
        } else {
            for (int i=0; i<children.length; i++)
                // Get filename of file or directory
                String filename = children;
              if(!filename.matches("Thumbs.DB")){
              System.out.println("filename:"+filename);
    if(test1.isDirectory()){
    System.out.println("filename:");
    boolean delete_dir=test1.delete();
    System.out.println("delete_dir:"+delete_dir);
    Thanks,
    R.Ramesh.

    I tried it ,
    pls go thru the following change in my code
    import java.io.*;
    class ListFiles
    public static void main(String args[])
         String path="C:/Documents and Settings/Desktop/IPLIT/Art/Notes";
         File test1 = new File(path);
         String[] children = test1.list();
             if (children == null) {
              boolean delete_dir=test1.delete();
              System.out.println("delete_dir:"+delete_dir);
              System.out.println("dir empty:");
         else {
                 for (int i=0; i<children.length; i++)
                          String filename = children;
                        if(!filename.matches("Thumbs.DB")){
                        File test2 = new File(path);
    I checked the folder its empty but still its not getting deleted
    Message was edited by:
    rameshr

  • When I press the tab button all my bookmarks in a list show- How do i make this not happen?

    When I press the tab button to open a new page, all my bookmarks in a list show- How do i make this not happen? It should be a blank page correct or the home page?

    ''cweb [[#question-1048679|said]]''
    <blockquote>
    When I press the tab button to open a new page, all my bookmarks in a list show- How do i make this not happen? It should be a blank page correct or the home page?
    </blockquote>
    Ok delete this questions I figured it out in add on settings

  • OCR  backup not happening

    hi all,
    i am using oracle enterp. linux 4 (64bit) - oracle 10.2.0 (RAC) ...
    ocr backup is not happening automatically. ocrconfig -showbackup is not listed the backups. and there is no backupfiles available under CRS_HOME/cdata/crs
    any idea, to start the automatted ocrbackup.
    thanks

    Hi ,
    Can you please also check the OCR backups on other nodes? and confirm whether the behavior is same on others also.
    OCR Automatic backups are taken by only the master node and not by the all the nodes
    So it is possible one of the other node is master and backups are taken on other node.
    Also
    The file $CRS_HOME/cdata/cluster1/temp.ocr is owned by root and oracle user does not have permission over it.
    This looks like bug:5893629 fixed in 10.2.0.4. Checkout Note:5893629.8 for more details.
    Delete the temp.ocr and check if the backups are getting generated.
    Please refer to
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocType=COMTHREAD&bmDocID=39679&viewingMode=1143&bmDocTitle=Automatic%20OCR%20bakcup%20issue&from=BOOKMARK&bmDocDsrc=COMMUNITIES))
    Regards
    Rajesh

  • Should not happen unless default context failed to deploy

              Can somebody please throw some light on this error?
              <Mar 5, 2001 10:07:26 AM EST> <Error> <HTTP> <HttpServer5173817,null
              default ctx,POSDev01) found no context for "GET /classes/ringout_statelessSession3@/RingoutSessionBeanHomeImpl_WLStub.class
              HTTP/1.0". This should not happen unless the default context failed
              to deploy.>
              Myself and lot of other people in my team are getting this error
              when using beans in a cluster.
              I am getting this error consistently whenever I make some code
              changes in my bean class (not interface changes) and redeploy it
              and try to lookup through a stand-alone client.
              The only way I could find to overcome this problem is:
              1) edit config.xml to remove the Application element completely
              corresponding to the bean
              2) remove jar files from the applications directory
              3) re-deploy and run the client again.
              Thanks a lot
              Kiran Ganuthula
              

    Partly it could be WLS problem also. Under any circumstances default webapp should be able
              to deploy. I have seen somebody else also reported the same problem. The current problem is
              if you delete anything from apps dir, the corresponding entry is not being deleted from config.xml
              So next time when you boot the server, it tries to deploy the webapp and eventually it fails.
              I 'm not sure if this is the situation in your case.
              In anycase somehow Targets tag is not being picking up. That's why i asked you add
              "WebServers" tag. I think we have done some major changes in SP1, to make sure that
              default webapp deploys all the times.
              If you still have problems, post it to servlet or management group, we will discuss there.
              Kumar
              Kiran G wrote:
              > I edited the config.xml ONLY after getting this error. And, it worked.
              >
              > BTW, can you please be more specific about the changes to config.xml
              > to solve the problem?
              > If possible, can you give pertinent portion(s) of config.xml, highlighting
              > the changes.
              >
              > Thanks
              > Kiran G
              >
              > Kumar Allamraju <[email protected]> wrote:
              > >
              > >
              > >It appears your "default webapp" failed to deploy.
              > >Did you messed up with the config.xml?.
              > >
              > >Add the following to your default webapp tag?
              > >
              > ><Application
              > > Deployed="true"
              > > Name="DefaultWebApp_vindev1"
              > > Path="./config/vindev1/applications"
              > > >
              > > <WebAppComponent
              > > Name="DefaultWebApp_vindev1"
              > > Targets="vindev1"
              > > WebServers="vindev1"
              > > URI="DefaultWebApp_vindev1"
              > > />
              > > </Application>
              > >
              > >
              > >Here vindev1 is my domain's name..
              > >
              > >BTW, this is not a clustering question. So you better
              > >post it to servlet newsgroup where you get much
              > >better answers..
              > >
              > >Kiran G wrote:
              > >
              > >> I forgot to give these details about the problem.
              > >> I am running this cluster using WebLogic 6.0 on a SUN
              > >sparc machine.
              > >>
              > >> The error text given in my original posting appears
              > >in the managed
              > >> weblogic server's log. The exception that the client
              > >receives while
              > >> lookup is :
              > >>
              > >> javax.naming.CommunicationException. Root exception
              > >is java.rmi.UnmarshalException:
              > >> failed to unmarshal class java.lang.Object; nested exception
              > >is:
              > >> java.lang.ClassNotFoundException: RingoutSessionBeanHomeImpl_WLStub
              > >> java.lang.ClassNotFoundException: RingoutSessionBeanHomeImpl_WLStub
              > >>
              > >> "Kiran G" <[email protected]> wrote:
              > >> >
              > >> >Can somebody please throw some light on this error?
              > >> >
              > >> ><Mar 5, 2001 10:07:26 AM EST> <Error> <HTTP> <HttpServer5173817,null
              > >> >default ctx,POSDev01) found no context for "GET /classes/ringout_statelessSession3@/RingoutSessionBeanHomeImpl_WLStub.class
              > >> >HTTP/1.0". This should not happen unless the default
              > >context
              > >> >failed
              > >> >to deploy.>
              > >> >
              > >> >Myself and lot of other people in my team are getting
              > >> >this error
              > >> >when using beans in a cluster.
              > >> >
              > >> >I am getting this error consistently whenever I make
              > >some
              > >> >code
              > >> >changes in my bean class (not interface changes) and
              > >redeploy
              > >> >it
              > >> >and try to lookup through a stand-alone client.
              > >> >
              > >> >The only way I could find to overcome this problem
              > >is:
              > >> >1) edit config.xml to remove the Application element
              > >completely
              > >> >corresponding to the bean
              > >> >2) remove jar files from the applications directory
              > >> >3) re-deploy and run the client again.
              > >> >
              > >> >Thanks a lot
              > >> >Kiran Ganuthula
              > >> >
              > >> >
              > >> >
              > >> >
              > >> >
              > >
              > >
              > ><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
              > ><html>
              > >It appears your "default webapp" failed to deploy.
              > ><br>Did you messed up with the config.xml?.
              > ><p>Add the following to your default webapp tag?
              > ><p><Application
              > ><br> Deployed="true"
              > ><br> Name="DefaultWebApp_vindev1"
              > ><br> Path="./config/vindev1/applications"
              > ><br> >
              > ><br> <WebAppComponent
              > ><br> Name="DefaultWebApp_vindev1"
              > ><br> Targets="vindev1"
              > ><br> <b><font color="#CC0000">
              > >WebServers="vindev1"</font></b>
              > ><br> URI="DefaultWebApp_vindev1"
              > ><br> />
              > ><br> </Application>
              > ><br>
              > ><p>Here vindev1 is my domain's name..
              > ><br><br>
              > >BTW, this is not a clustering question. So you better
              > >post it to servlet
              > >newsgroup where you get much
              > ><br>better answers..
              > ><p>Kiran G wrote:
              > ><blockquote TYPE=CITE>I forgot to give these details about
              > >the problem.
              > ><br>I am running this cluster using WebLogic 6.0 on a
              > >SUN sparc machine.
              > ><p>The error text given in my original posting appears
              > >in the managed
              > ><br>weblogic server's log. The exception that the client
              > >receives while
              > ><br>lookup is :
              > ><p>javax.naming.CommunicationException. Root exception
              > >is java.rmi.UnmarshalException:
              > ><br>failed to unmarshal class java.lang.Object; nested
              > >exception is:
              > ><br> java.lang.ClassNotFoundException:
              > >RingoutSessionBeanHomeImpl_WLStub
              > ><br>java.lang.ClassNotFoundException: RingoutSessionBeanHomeImpl_WLStub
              > ><p>"Kiran G" <[email protected]> wrote:
              > ><br>>
              > ><br>>Can somebody please throw some light on this error?
              > ><br>>
              > ><br>><Mar 5, 2001 10:07:26 AM EST> <Error> <HTTP>
              > ><HttpServer5173817,null
              > ><br>>default ctx,POSDev01) found no context for "GET /classes/ringout_statelessSession3@/RingoutSessionBeanHomeImpl_WLStub.class
              > ><br>>HTTP/1.0". This should not happen unless the default
              > >context
              > ><br>>failed
              > ><br>>to deploy.>
              > ><br>>
              > ><br>>Myself and lot of other people in my team are getting
              > ><br>>this error
              > ><br>>when using beans in a cluster.
              > ><br>>
              > ><br>>I am getting this error consistently whenever I make
              > >some
              > ><br>>code
              > ><br>>changes in my bean class (not interface changes)
              > >and redeploy
              > ><br>>it
              > ><br>>and try to lookup through a stand-alone client.
              > ><br>>
              > ><br>>The only way I could find to overcome this problem
              > >is:
              > ><br>>1) edit config.xml to remove the Application element
              > >completely
              > ><br>>corresponding to the bean
              > ><br>>2) remove jar files from the applications directory
              > ><br>>3) re-deploy and run the client again.
              > ><br>>
              > ><br>>Thanks a lot
              > ><br>>Kiran Ganuthula
              > ><br>>
              > ><br>>
              > ><br>>
              > ><br>>
              > ><br>></blockquote>
              > ></html>
              > >
              > >
              [att1.html]
              

  • Trying to delete pages 21-24 on iPhoto book but "remove pages" option grayed out and pressing delete button not doing anything.  Help!

    Trying to delete pages 21-24 on iPhoto book but "remove pages" option grayed out and pressing delete button not doing anything.  These extra pages resulted from using Autoflow and now we can't seem to get rid of them.  Help!

    Good morning Old Toad.
    I did as you suggested:
    1) Booted from install CD.
    2) Ran Disk Utilities on internal hard drive--no repairs necessary. For good measure, did the same thing on external drive. Also no repairs necessary.
    3) Checked software update--no updates found. About this Mac said I was already running 10.4.7. For good measure, I downloaded the latest and installed it. Since it let me run the install, I'm not sure if I installed something new or reinstalled what I already had.
    4) I rebooted from CD, ran disk utilities, ran repair disk--no repairs necessary. Repaired permissions and a lot of permissions repaired.
    5) Tried to delete the files and the same old thing happened: kernel panic. The specific message:
    panic(cpu 0 caller 0x00102A08): jnl: transaction too big (1587712 >= 1572352 bytes, bufsize 8192, tr 0x29f1fb0 bp 0x2801de40)
    So there's no change in my status.
    I'm trying to delete the files because:
    A) They already take .5 Gb.
    B) I can't get rid of them ever. If I move the problem files to a different folder, I can only do one successful drag-and-drop backup to the external drive until the "new" thumb segments become unerasable just like the previous versions and crash the system.
    C) I can't even "just" drag and drop every file/folder except the thumbs, because that ends up crashing the system as well. So I have to drag and drop every file/folder in the iPhoto hierarchy individually. Which makes me less inclined to backup, which defeats the purpose of a backup.
    D) After the iPhoto fiasco I'm just crabby about all the Apple screw-ups I'm experiencing and I want to get them fixed.
    Thanks for your help. Any additional suggestions would be appreciated.
    G4   Mac OS X (10.4.6)  

  • How can I save a jepg file in lower case letters? I check the use lower case box in preferences but it's not happening. PSCC

    how can I save a jepg file in lower case letters? I check the use lower case box in preferences but it's not happening. PSCC

    Let's try a preferences reset: (Windows)
    Press and hold Control - Shift - Alt immediately upon cold-starting Photoshop.  If you get the keys down quickly enough - and you have to be VERY quick - it will prompt you to confirm deletion of your established preferences, which will lead to them all being set to defaults.

Maybe you are looking for

  • Help! Computer crashed, need to get pics off of my iPod

    My other laptop crashed last week and I now have about 15g worth of pics, music and videos on my 30g iPod that I can't get off. Is there a way to transfer the songs and pics from the iPod to my other computer? I've tried the recommendations found on

  • Balance sheet adjustment error

    Hi Guys, When we are running the balance sheet adjustment, F.5E , we are getting the error " correct the error eat ". when i go to display error message, it takes me to the GL account XXXXXX for this company code , and then says that this Balance she

  • Insight how ascp Order Priority (field Order Priority) is derived ?

    Anyone has detailed information on how ascp assigns "Order Priority" in the Order Priority field in the workbench ? I understand one factor is Priority Rule, but I need more detailed logic behind it. Is this field really meant to tackle the priority

  • Apps don't wiggle and cannot delete

    I cannot delete my apps on my ipad. I have tried the followings thing: 1. Press and hold apps/screen - they DO NOT wiggle/shake 2. Tried to go into my Settings and reset my Restrictions - Restrictions is not present in my Settings. 3. Tried to go to

  • How many total minutes are in my playlist?

    I used to be able to see this, but I can't see this on my playlists anymore.  Did something change on iTunes or what is the setting that will give me this?  I want to have a playlist that is approximately 50 minutes long, without trying to add up the