Random segfaults when doing an xupdate at the container level

I am having an error where updates to a container are causing segfaults in weird ways. I am on 2.4.16 with the latest patch applied. my query is attempting to mark a node as 'empty'...
> for $q in collection('dbxml:/rx.dbxml')//results[text()="http://myurl.com/results"] return (replace value of node $q with '')
Its replicable on certain containers, but not others, making me think that an index is out of whack or something weird is going on, but doc() updates still work so I'm not really sure why the container keyword would be different. All containers are configured exactly the same way, its just that some won't let me run this query without barf city. To top off the weirdness, the transactions are actually successful in the end once I get the db back up and recovered from the segv.
I have some ideas but none of them really explain the kinda sporadic nature of the issue.
1) I am creating a query context before using this call - should I have an update context as well?
2) Could an index be hosed somewhere? Why would that happen? (disclaimer - I've been through several migrations and seen similar bugs along the way)
3) Could the fact that the text in the node is a url make it unhappy?
I have pasted a backtrace below of where the segv happens if it helps at all.
Thanks in advance!
eleddy
Program received signal SIGSEGV, Segmentation fault.
NsDomElement (this=0x68106e0, node=<value optimized out>, document=<value optimized out>) at NsDom.cpp:107
107          if (isDocumentNode()) {
Current language: auto; currently c++
(gdb) bt
#0 NsDomElement (this=0x68106e0, node=<value optimized out>, document=<value optimized out>) at NsDom.cpp:107
#1 0x00002ae326e0c8e1 in DbXml::NsDomElement::getElemNext (this=0x6810b40) at NsDom.cpp:320
#2 0x00002ae326e500e4 in DbXml::ElementDescendantAxis::nextNode (this=0x6826470, context=<value optimized out>) at DbXmlNodeImpl.cpp:2176
#3 0x00002ae326e51756 in DbXml::DbXmlAxis::next (this=0x6826470, context=0x6816128) at DbXmlNodeImpl.cpp:1642
#4 0x00002ae326e48c0d in DbXml::ResultAdapter::next (this=<value optimized out>, context=0x6816128) at ../dataItem/DbXmlResult.hpp:44
#5 0x00002ae326ed1a70 in DbXml::StepIterator::next (this=0x68b78a0, context=0x6816128) at StepQP.cpp:765
#6 0x00002ae326ebbae4 in DbXml::PredicateFilter::doNext (this=0x68b7b10, context=0x6816128) at PredicateFilterQP.cpp:459
#7 0x00002ae326eba3d0 in DbXml::PredicateFilter::next (this=0x68b7b10, context=0x6816128) at PredicateFilterQP.cpp:420
#8 0x00002ae326eb9b2e in DbXml::QueryPlanToASTResult::next (this=0x68191d0, context=0x6816128) at QueryPlanToAST.cpp:63
#9 0x00002ae327642947 in ForTupleResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
#10 0x00002ae327641253 in XQReturn::createUpdateList () from /usr/local/xmldb/lib/libxqilla.so.4
#11 0x00002ae3277509d0 in UApplyUpdates::createSequence () from /usr/local/xmldb/lib/libxqilla.so.4
#12 0x00002ae32762162e in ASTNodeImpl::CreateSequenceResult::getResult () from /usr/local/xmldb/lib/libxqilla.so.4
#13 0x00002ae327749960 in LazySequenceResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
#14 0x00002ae327662668 in XQQuery::QueryResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
#15 0x00002ae326dc438c in DbXml::LazyDIResults::hasNext (this=0x6824620) at Results.cpp:358
#16 0x00002ae326dd8ca4 in DbXml::XmlResults::hasNext (this=<value optimized out>) at XmlResults.cpp:74
#17 0x00002ae326d9428d in DbXml::QueryExpression::execute (this=0x682ea30, txn=0x6802570, contextItem=0x0, context=<value optimized out>, flags=<value optimized out>)
at QueryExpression.cpp:147
#18 0x00002ae326dd04ed in DbXml::XmlQueryExpression::execute (this=<value optimized out>, context=@0x30, flags=0) at XmlQueryExpression.cpp:92

In cases like these it's best to give more detail, such as:
o platform/compiler/version
RHEL 4 64bit/gcc4.1.2. using python/swig wrapperso container type, index type
default container types, with these options: DB_CREATE|DB_EXCL|DBXML_TRANSACTIONAL. indexes are all node indexeso indexes on the container
5 node indexes, very simpleo concurrent vs single-threaded access
single writer multiple readers -> we are having really good concurrency success so I don't think that' the issue. I'm following the rule to the T hereo configuration specified on environment and containers
containers created with DB_CREATE|DB_EXCL|DBXML_TRANSACTIONAL and opened with DBXML_TRANSACTIONAL. environment. environments are created with DB_CREATE|DB_THREAD|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_MPOOL|DB_INIT_TXN and the config is below
environment.set_lk_detect(DB_LOCK_MINWRITE)
environment.set_lk_max_lockers(20000)
environment.set_lk_max_locks(10000)
environment.set_lk_max_objects(5000)
environment.set_lg_max(104857600)
environment.set_lg_bsize(20971520)
environment.set_lg_regionmax(41943040)
environment.set_timeout(3000000, DB_SET_TXN_TIMEOUT)That sort of thing. Intermittent problems are often related to either unintended concurrency in an application or uninitialized variables. The latter can often be detected using valgrind if your are on a Linux platform. It also wouldn't hurt to reindex the problem containers to see if that has an effect.
I will try reindexing in a staging environment, but this database is pretty big and they are live so its not really an option to reindex all the time (plus its not like the indexing can really happen while people are using it which makes it difficult). I've already dealt with a similar indexing bug in the past and I thought the latest version fixed that problem. I will see what valgrind can pull up but like I said I'm relying on python/swig and valgrind can be pretty misleading with PyMallocThanks for sending a stack but it's not all that illuminating. Another thing is to know if the issue is reproducible in a debug build where you'd get a better stack.
I did a fresh install already with the latest patches and that didn't solve the issue. the forum has been really good at diagnosing without taking it to the debug build level so if things get bad or if you need more info I'll take it to that level but perhaps someone has similar issues or it rings a bell that we can explore first

Similar Messages

  • When does Photoshop cc supports the raw files wich are coming from the Nikon D5500 ?

    Hello,
    When does Photoshop cc supports the raw files wich are coming from the Nikon D5500 ?
    Iam a very happy user of Photoshop, specially for my raw files... i find it frustrated that i can't work on my files for now..
    Greatings Danny

    The D5500 was just released and Adobe is working on support. Cannot say how long for sure, but it should be within a month or two. Meanwhile, you could shoot in NEF+JPEG and set Camera Raw to open your JPEGs as well. Not as much data, but will be better than nothing..
    Benjamin

  • When doing goods receipt and the movement from QA to unrestricted use there

    Dear all,
    when doing goods receipt and the movement from QA to unrestricted use there is an yellow error message
    Error in EXIT_ SAPMM07_004 : Object 10462311E06/52,Char."LOBM_UDCODE,Value 01 A0,error"VALUE_NOT_FOUND"
    Inspection Lot : 10000283512
    System Status : UD ICCO SPRQ

    Hi,
    Did you use the follow up action in the UD code selection? It looks from the error that program is unable to find the UD code.
    Kindly check the configurations in QM and see that everything is working fine?
    Alternatively, if you are using the follow up action, then remove that first. Do the GR using MIGO -- this will create the inspection lot. Confirm the inspection using QA11 by entering the UD code for acceptance. Thereafter the the stock will rest in QI status. Use MB1B and perform the transfer posting with movement 321 to bring the stock to unrestricted use.
    Regards,
    Sushant

  • When doing a upgrade download, the download ask me to close elementsAutoAnalyzer, I cannot find it

    when doing an upgrade download, the download manager ask to close elementsautoanalyzer.  I do not have or can't find this application.  please advise

    Closing Programs Interfering with Installation
    PC - Task Manager: (CTRL-ALT-Delete) http://support.microsoft.com/kb/323527
    Mac - Activity Monitor: http://osxdaily.com/2010/08/15/mac-task-manager/

  • Segment E1RSHND does not occur at the current level of thecustom basic type

    Hello Friends,
    This is the error iam getting in RSA1 for Heirarichal orgunit: So data load is failing.
    EDI: Syntax error in IDoc (segment cannot be identified)
    Message no. E0078
    Diagnosis
    The segment E1RSHND does not occur at the current level of the basic type ZSPB007 (extension ).
    This error can have several reasons:
    The segment E1RSHND is assigned to a group whose header segment does not occur.
    The segment E1RSHND does not exist in the syntax description of the basic type ZSPB007 (extension ).
    The sequence of segments in the group in which the segment appears is incorrect.
    Previous errors ('mandatory' segment or group missing) may be due to this error.
    Procedure
    Please check the IDoc or the syntax description of the basic type ZSPB007 (extension ).

    Hi Sonal ,
        i reprocessed the Idoc in BD87 and now the status is 51. Error message in RSA1 is as follows
    Function module not allowed: RSAR_DATA_RECEIVED
    Message no. B1252
    Diagnosis
    The function module RSAR_DATA_RECEIVED and the application object type which were determined are not valid for this IDoc.
    Procedure
    1. Please check that the process code in the inbound partner profile is correct.
    2. If this is the case, you should check the ALE inbound methods ALE inbound methods for the process code and see whether the specified function module and application object type are correct.
    3. If this is also the case, then the function module and the application object type are not permitted for the logical message type, message variant, message function and basis type that are contained in the IDoc control record. You should check whether the correct values have been assigned to these fields in the control record. If they do have the correct values, then the assignment to the function module and the application object type needs to be maintained.

  • Random crashes when doing routine editing, then log & transfer

    I have been experiencing crashes when performing simple editing then returning to Log & Transfer to pull in more footage into the project. I did a permissions repair which seemed to work for a short time - but now it is crashing again. I also followed Shane's advice to disable the Remove Advanced Pulldown and Multiple Frames setting in the Log & Transfer preferences. I have a new MacBook Pro 2.66 ghz and new Final Cut Studio with Final Cut Pro 7.
    Here is a portion of the error log - this is basically the same error when the crash occurs:
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000ffffffff
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.FinalCutPro 0x0015459e DispatchMultitouchGestureCommand(OpaqueEventRef*, long, unsigned char) + 500
    1 com.apple.FinalCutPro 0x0015a713 DoEvent(OpaqueEventRef*, KGDictInt*) + 8309
    2 com.apple.FinalCutPro 0x00414a21 Events(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 67
    3 com.apple.HIToolbox 0x942bc13d DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181
    4 com.apple.HIToolbox 0x942bb57b SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    5 com.apple.HIToolbox 0x942d7ecc SendEventToEventTarget + 52
    6 com.apple.HIToolbox 0x942ea603 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2579
    7 com.apple.HIToolbox 0x942bc4f6 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2134
    8 com.apple.HIToolbox 0x942bb57b SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    9 com.apple.HIToolbox 0x942d7ecc SendEventToEventTarget + 52
    10 com.apple.HIToolbox 0x94344a6c ToolboxEventDispatcher + 86
    11 com.apple.HIToolbox 0x943412c2 RunApplicationEventLoop + 222
    12 com.apple.FinalCutPro 0x0015464f KGMainEvent(void*) + 51
    13 com.apple.FinalCutPro 0x002c1aa8 main + 54
    14 com.apple.FinalCutPro 0x00003a6b _start + 209
    15 com.apple.FinalCutPro 0x00003999 start + 41

    Update - after completing some editing today, it appears the crashes are only occurring whenever I am working with Log & Transfer - especially when I am previewing the clip, marking in/out, and also when I am scrolling through the list of clips.
    I appreciate and help.

  • Random crashes when using 16 Labview with the 32 bit labview

    I am using 2 versions of Labview at the same time, one is version 4 which has a camera and a weigh-in-motion scale attached to it. The second is either Labview version 4, 16-bit or Labview 3.0.1, 16-bit, i'm not sure. The sixteen bit has a data acquisition system attached to it. Its an optim electronics system and the 16-bit Labview drivers for the optim were provided by Optim electronics and so I am stuck with using the same system. When I use both these systems in tandem, the system crashes frequently, but both systems run fine independently. It usually just freezes up or says "Illegal operation performed. Contact program vendor". Its a windows error with a red cross.

    So a guy goes into his doctors office and tells his doctor "Ya gotta
    help me doc...it hurts when I run my head into the door like
    this...OW!". Then the doctor says:
    "DON'T DO THAT ANY MORE!!!"
    (I promise to keep my day job...oops what job...and not go into
    comedy..)
    Why don't you convert all the old 16 bit code into 32 bit code and
    create one application where the various parts all know about each
    other? I don't think that there's any way to coordinate an old 16 bit
    LV and a new 32 bit LV application so that they don't step on each
    other driverwise like they appear to be doing. I don't think that the
    two LabVIEW's even know that the other exists!
    Alternatively, get a second computer to run the 16 bit code on and
    make the two apps communicate with
    each other using TCP/IP or serial.
    Doug De Clue
    [email protected]
    cincidude wrote in message news:<[email protected]>...
    > I am using 2 versions of Labview at the same time, one is version 4
    > which has a camera and a weigh-in-motion scale attached to it. The
    > second is either Labview version 4, 16-bit or Labview 3.0.1, 16-bit,
    > i'm not sure. The sixteen bit has a data acquisition system attached
    > to it. Its an optim electronics system and the 16-bit Labview drivers
    > for the optim were provided by Optim electronics and so I am stuck
    > with using the same system. When I use both these systems in tandem,
    > the system crashes frequently, but both systems run fine
    > independently. It usually just freezes up or says "Illegal operation
    > performed. Contact program vendor". Its a windows error with a red
    > cross.

  • Error when doing a search in the Account Dim

    I get this error sometimes: "The member exists in NEXT...Do you want to expand?"
    It only happens in the Account dimension and when the view is ID and Description. Any Ideas? Thx.

    I've just had the same issue on my system, where I would see "The member exists in NEXT...."
    It wasn't on all dimensions, but was on most of them within one of the Applications.
    I took a note of the dimensions that gave the error and then did a Full Process on each individual dimension that was affected.
    Following that, I logged out of BPC Excel and back in.
    Once I had done that, everything worked perfectly again
    I don't know if this will resolve your issue, but good luck with it.
    Craig

  • When does a JTabbedPane set the size of the component inside a tab?

    I would like to know how big a component inside a tab is directly after I've added it to a tab in a JTabbedPane.
    I thought once I've "added" a component via the JTabbedPane.add(String, Component) method, the Component would be realized with correct sizes.
    Where or when should I request the information about how big a component has become inside a tab??
    Example:
    1. "Add" a tab via the menu.
    2. Notice that the size of the panel has not changed even though we see it on the screen.
    -Js
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    public class TabbedPaneShowingTest extends JFrame
         //GUI
         private JTabbedPane tabbedPane;
              private JPanel tabPanel;
         //MENU
         private JMenuBar mainMenuBar;
              private JMenu actionMenu;
                   private JMenuItem addTabMenuItem;
         public TabbedPaneShowingTest()
              this.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
              this.setContentPane(getTabbedPane());
              this.setJMenuBar(getMainMenuBar());
              this.pack();
              this.setVisible(true);
         //GUI
         private JTabbedPane getTabbedPane()
              if(tabbedPane == null)
                   tabbedPane = new JTabbedPane();
                   tabbedPane.setPreferredSize(new Dimension(100,100));
              return tabbedPane;
         private JPanel getTabPanel()
              if(tabPanel == null)
                   tabPanel = new JPanel();
                   tabPanel.setBackground(Color.GREEN);
              return tabPanel;
         //MENU
         private JMenuBar getMainMenuBar()
              if(mainMenuBar == null)
                   mainMenuBar = new JMenuBar();
                   mainMenuBar.add(getActionMenu());
              return mainMenuBar;
         private JMenu getActionMenu()
              if(actionMenu == null)
                   actionMenu = new JMenu("Action");
                   actionMenu.add(getAddLineMenuItem());
              return actionMenu;
         private JMenuItem getAddLineMenuItem()
              if(addTabMenuItem == null)
                   addTabMenuItem = new JMenuItem("Add Tab");
                   addTabMenuItem.addActionListener(new ActionListener()
                        public void actionPerformed(ActionEvent e)
                             System.out.println("BEFORE TAB SIZE: " + getTabPanel().getWidth() + "," + getTabPanel().getHeight());
                             getTabbedPane().add("Tab",getTabPanel());
                             System.out.println("AFTER TAB SIZE: " + getTabPanel().getWidth() + "," + getTabPanel().getHeight());
              return addTabMenuItem;
         public static void main(String args[])
              new TabbedPaneShowingTest();
    }

    Once again... a little experimenting is a good thing. Just use SwingUtilities.InvokeLater() to retrieve the proper size.
    -Js
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.SwingUtilities;
    public class TabbedPaneShowingTest extends JFrame
         //GUI
         private JTabbedPane tabbedPane;
              private JPanel tabPanel;
         //MENU
         private JMenuBar mainMenuBar;
              private JMenu actionMenu;
                   private JMenuItem addTabMenuItem;
         public TabbedPaneShowingTest()
              this.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
              this.setContentPane(getTabbedPane());
              this.setJMenuBar(getMainMenuBar());
              this.pack();
              this.setVisible(true);
         //GUI
         private JTabbedPane getTabbedPane()
              if(tabbedPane == null)
                   tabbedPane = new JTabbedPane();
                   tabbedPane.setPreferredSize(new Dimension(100,100));
              return tabbedPane;
         private JPanel getTabPanel()
              if(tabPanel == null)
                   tabPanel = new JPanel();
                   tabPanel.setBackground(Color.GREEN);
              return tabPanel;
         //MENU
         private JMenuBar getMainMenuBar()
              if(mainMenuBar == null)
                   mainMenuBar = new JMenuBar();
                   mainMenuBar.add(getActionMenu());
              return mainMenuBar;
         private JMenu getActionMenu()
              if(actionMenu == null)
                   actionMenu = new JMenu("Action");
                   actionMenu.add(getAddLineMenuItem());
              return actionMenu;
         private JMenuItem getAddLineMenuItem()
              if(addTabMenuItem == null)
                   addTabMenuItem = new JMenuItem("Add Tab");
                   addTabMenuItem.addActionListener(new ActionListener()
                        public void actionPerformed(ActionEvent e)
                             System.out.println("BEFORE TAB SIZE: " + getTabPanel().getWidth() + "," + getTabPanel().getHeight());
                             getTabbedPane().addTab("Tab",getTabPanel());
                             SwingUtilities.invokeLater(new Runnable()
                                  public void run()
                                       System.out.println("AFTER TAB SIZE: " + getTabPanel().getWidth() + "," + getTabPanel().getHeight());
              return addTabMenuItem;
         public static void main(String args[])
              new TabbedPaneShowingTest();
    }

  • My language keeps getting randomly changed when doing searches.

    For some reason, if I do a google search then go to images and then proceed to click on the Google logo, my language gets switched and Google thinks I'm from the Czech Republic. However, this only happens when my homepage is the Mozilla default. If I change my homepage to Google, this doesn't happen. How do I fix this?
    My language in my options is set to English

    thank you demons3499 my pw stopped changing and my imessage is working, even though it is says "activation unsuccessful and my email shows up when my send an imessage to someone. This whole thing is pretty bizarre, I've had iPhones from the moment the first one came out and I have NEVER had a similar issue.

  • When does a Connection realise the server is down?

    Hi there,
    I'm developing an application using (all on Win 2k Pro SP3):
    - Tomcat 4.1.18
    - MS SQL Server 7.1
    - jTDS 0.5.1 Type 4 driver
    If the application is running (i.e. within Tomcat) and the database server is stopped externally (e.g. from the Enterprise Manager) I get the following scenario:
    1]
    (connection == null); // still returns false
    2]
    (connection.isClosed()); // still returns false
    3]
    SQLWarning s = connection.getWarnings();
    server application stops and waits at this call, a further request from the client will restart the process - i.e. the server doesn't hang.
    An error isn't thrown until an attempt is made to create a ResultSet from a Statement made using this Connection (either a new or pre-exisiting Statement).
    How can I check if this Connection is still usable, apart from closing and re-opening it with every call / creating a fake ResultSet for the purposes of poling the database server - which both totally defeat the purpose of having a Connection object.
    Has anyone encountered this behaviour before? - perhaps it's driver specific? (jTDS 0.5.1)
    Many thanks,
    Fergus.

    (connection == null); // still returns falseNot surprising since there is no situation
    (unless you simply forgot to call getConnection)where
    there will ever return true.Well, if you executed the line of code
    connection = null;
    that would return true. But in a normal
    program, no.You mean if you purposely forgot to call getConnection() rather than accidently as I suggested? Yeah that would do it too. :)

  • When does the expression fulfill the criteria

    Dear Experts,
    always when I am creating a SC it choses directly the Workflow "without approval" WS10000060. 
    In order to understand it basically. .There can be  maintained some start conditions
    through T-Code SWB_COND. I saw within this transaction you can make a lot of settings. If you activate any start condition the
    light is getting the color green.
    In our case for  WS90100002 
    Start condition  Workflow-Start WS90100002   
    Business Object EC Requirement Coverage Request
    Event Shopping cart created
    Expression:->    &EC Requirement Coverage Request.STARTWORKFLOW&  = BUDGET+KR
    My question will be now. What means BUDGET+KR in this case. When does this expression fulfill the criteria
    of being BUDGET and KR so the workflow can start ?? 
    Regards
    Marco

    Masa thank you for your help.
    Yes indeed there is a ZBUS2121 with parameter STARTWORKFLOW.
    Two more questions.
    1) Where does the assignment take place while Workflow's runtime with choosing  ZBUS2121 instead of BUS2121?
    2) Can I debug this ZBUS2121 while creating a shopping card ?
    Regards
    Marco

  • Error in pricing when doing sourcing in EBP 4.0

    Hello,
    We're experiencing random errors when doing sourcing in EBP 4.0. The shopping carts don't seem to have any similarities that could launch the error. There has been few cases when the same error has occured when user is creating a shopping cart.
    The problem occures when doing sourcing and the shopping cart is either being held or a PO is created. The error creates dump in ST22, "UNCAUGHT_EXCEPTION". This is somehow related to pricing and we have checked note 673372 and ran report BBP_CND_CUSTOMIZING_CHECK, all OK. IPC is running the same SP level as SRM, SP level 10.
    We have already created an OSS about this, but as this is completely random we haven't been able to reproduce the error and no solution has been found.
    Here's some data from ST22:
    Transaction......... "BBPSOCO01 "             
    Program............. "SAPLBBP_PDH"            
    Screen.............. "SAPLBBP_SOCO_UI_ITS 2000"
    The termination occurred in the ABAP program "SAPLBBP_PDH" in "BBP_PD_ABORT"
    The main program was "SAPLBBP_SOCO_UI_ITS ".                                                                               
    The termination occurred in line 69 of the source code of the (Include)   
    program "LBBP_PDHU08"                                                    
    of the source code of program "LBBP_PDHU08" (when calling the editor 690).
    000600   * get the messages from the application log    
    000610     TRY.                                         
    000620         CALL FUNCTION 'BBP_PD_LOG_GET_MESSAGES'  
    000630           TABLES                                 
    000640             E_MESSAGES = LT_MESSAGES.            
    000650       CATCH CX_BBP_PD_ABORT.                     
    000660         REFRESH LT_MESSAGES.                     
    000670     ENDTRY.                                      
    000680                                                  
    >     RAISE EXCEPTION TYPE CX_BBP_PD_ABORT EXPORTING
    Thanks already in advance!
    -Jussi

    Hi
    Please refer to following SAP Notes:
    Note 860935 - pricing customizing exits are missing
    Note 673372 - Short dumps UNCAUGHT_EXCEPTION in SRM 3.0, 4.0, and 5.0
    Also try to implement the latest IPC patches following the instructions from note 880749, then restart the VMC. It worked for us, after trying many things with no luck.
    Alternatively, try this as well. There must be some problem with VMC. Most probably java connection problem. Please execute program RSVMCRT_HEALTH_CHECK in SE38 transaction. You should see green for all 4 messages in the result. Please contact your basis consultant and refer notes 854170 (and 844817)
    <u>Other related OSS notes.</u>
    Note 1024374 - Unexpected pricing error for pricing irrelevant item
    Note 992259 - NullPointerException in Command GetFilteredCsticsAndValues
    Note 860935 - pricing customizing exits are missing
    Note 673372 - Short dumps UNCAUGHT_EXCEPTION in SRM 3.0, 4.0, and 5.0
    Note 854170 - Activating the component "VM Container"
    Note 593109 - Short dumps UNCAUGHT_EXCEPTION in SRM 2.0 (EBP 3.5)
    Note 880749 - Patching of VMC based AP 7.00 engines
    Note 854170 - Activating the component "VM Container"
    Note 844816 - Information for Upgrade from IPC 4.0 to SAP AP 7.00
    Hope this will help.
    Please award points if helpful.
    Regards,
    -Atul

  • TS1702 I got this error when doing a restore

    I got this error when doing a restore and the restrictions were turned on .  I disabled restrictions and the restore was able to complete.

    The error in itunes had a link to http://support.apple.com/kb/TS1702.  I placed this message here for anyone that might navigate to the same message and would hopefully find this.  Yes turning off restrictions allowed the restore to complete and everyone is now happy.

  • Display shuts down when doing a system restore

    Presio CQ61-411M
    Windows 7
    Display shuts off when trying to do a system restore.
    When doing a system restore the display seems to shut off. I have tried many times, sometimes it stops at 3%, sometimes at 14% and sometimes before I can even start it. I have attached a second monitor and it goes off at the same time.
    I can no longer boot to windows since it started a system restore.
    I have tried to boot from a CD and also get a black screen. All lights on the keyboard are still on. It is like it goes into powersave mode. Light on HD is solid, doesn't make any noise.
    I am so frustrated! There was no power or display issues before I started. I was simply going to do a clean restore.

    Yes, if you have the music folder you still have your song files....the most important!
    But I would hate to lose my ratings and playlists.
    If you want your ratings and playlists from the ipod, itunes will NOT do it. You would have to download & install some other 3rd-party ipod manager. Such as mentioned here:
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P2
    My advice for the future is to make frequent backups of the iTunes Library.itl file. About once a week, I put a copy on a USB stick Mor often if I've done lots of edits/added content. And ALWAYS before an itunes upgrade.

Maybe you are looking for

  • Why are trim marks not printing correctly in Acrobat 9?

    I just upgraded from Acrobat Pro 7 to Acrobat Pro 9. In 7 when I had a document with bleed I could indicate that I wanted trim marks and they would print and I could see where the page would be trimmed. In 9 no matter what I do it puts the trim marks

  • Can't install oracle 9i on win XP pro

    I've successfully downloaded oracle 9i Db (enterprise). I've tried to install it on three different pc (Dell dimension 4400) with same os (windows xp pro). Everything works fine, except only for one of them : when I try run setup.exe, nothing happens

  • Handling event in subVI

    Hi all, I register an event (value change for a boolean array) in a subVI.  I connect the refnum with the dynamic event connector (event loop) the in the higher level VI.  So the loop will fire when the subVI's boolean array change. It works well onl

  • Recent Printer Update screwed up my fax to email option

    I have an HP - Officejet Pro X476dw Wireless All-In-One Printer that worked fine, converting my faxes to pdf files and forwarding them to my email.  After I receieved notice from the printer screen that an update was available, I updated.  This morni

  • Help with creating a list, adding to it, calling it and putting it in a combobox with c#

    I have been making a word RPG game with the windows form in c#, and I have encountered some problems along the way. Right now I have a character creation screen, and a screen that displays all of the stats, and gear equipment. I was thinking about ad