Modify elemets of a node

Hi Experts,
I am trying to enhance method HANDLE_UPLOAD_CHILDREN of class /SAPSRM/IF_CLL_SOSM_SC_TEMPL in SRM 7.0  .
Let me explain the issue
Time point 1.
lon_results_node = mo_wd_context->get_child_node( mc_data_results_node ).
In debugger
COLLECTION                                        Standard Table[18x1(8)]
Time point 2.
lon_results_node->bind_table(
       EXPORTING
       set_initial_elements = abap_false
       new_items = lt_cll_result ).
In debugger
COLLECTION                                        Standard Table[22x1(8)]
My requierment is to change the data of one column in the internal table lt_cll_result  and this changes data should be displayed in UI.
I get relevant data into column for all rows in lt_cll_result  and then bind it again but this adds to existing 22 redords instead of modifying the elements of node.
How can I modify the elements?
I tried to INVALIDATE the node before binding again but doing this nthing is displayed in UI (table is initial messgae), also tried passing SET_INITIAL_MELEMENTS = ABAP_TRUE but same result.
Thanks,
Anubhav

Without the dtd, it is not clear why the sample code fails but here are a few pointers that may be of use:
- The j2ee tutorial on java.sun.com:
http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JAXPDOM5.html#wp64575
has a section on 'examing the structure of a dom' .
Excerpt for the above URL:
Note: Important! Text nodes exist under element nodes in a
DOM, and data is always stored in text nodes. Perhaps the most
common error in DOM processing is to navigate to an element
node and expect it to contain the data that is stored in that
element. Not so! Even the simplest element node has a text
node under it that contains the data. For example, given
<size>12</size>, there is an element node (size), and a text
node under it that contains the actual data (12).
http://java.sun.com/j2ee/1.4/docs/tutorial/examples/jaxp/dom/samples/DomEcho02.java is a useful program to analyze the structure of a dom.
- You can try printing the DOM and analyse the structure of DOM. The following URL has a set of useful samples for xml dom processing: http://developers.sun.com/sw/building/codesamples/dom/. In particular the DOMUtils class has two useful static methods for debugging a DOM:
1. printDOM(org.w3c.dom.Node node): Prints the specified node, then prints all of its children.
2. writeXmlToFile(java.lang.String filename, org.w3c.dom.Document document): This method writes a DOM document to a file
http://developers.sun.com/sw/building/codesamples/dom/doc/DOMUtil.java
- http://forum.java.sun.com/forum.jspa?forumID=34 is the forum for java technology & xml.
Hope u find the pointers useful.

Similar Messages

  • Pen tool modifier for asymmetric smooth node?

    I use both Illustrator and Corel Draw at work. While I use Illustrator most often, the rest of the art department uses Corel, and I've come to notice a few handy features. One is that, when using the bézier tool, you can hold down a modifier key to draw a smooth but asymmetrical node much as you can hold down Alt or Option in Illustrator to draw a corner node. Is there a similar function in Illustrator that I'm overlooking? It's awfully convenient to not have to stop drawing and switch to direct select tool to get an asymmetric node.

    It would seem pretty simple - just use Opt/Alt + Ctrl for instance.
    (In Corel, C modifies for a corner point, S for smooth asyemmetrical).
    I'm not trying to start a debate on the relative merits of each program, but it is a handy feature. Taking the 1-2 seconds to switch to direct select or convert anchor to modify each anchor I need to be asymmetrical really adds up on a drawing with several thousand anchors — to the point that I've found myself using Corel, which I don't normally prefer except for prepress work, for some drawings at this job I've recently started.

  • How to modify a node value in a DOM tree?

    I have following code; it parses a XML file from a file and builds a in-memory DOM tree, but when I tries to modify one of the node value, it keeps telling me: oracle.xml.parser.v2.XMLDOMException: Node cannot be modified. How do I do it?
    // ==================================
    DOMParser theParser = new DOMParser();
    theParser.setValidationMode(false);
    InputStream theInputStream = myApp.class.getResourceAsStream("/test.xml");
    theParser.parse(theInputStream);
    XMLDocument theXMLDoc = theParser.getDocument();
    NodeList theNodeList = theXMLDoc.selectNodes("/root/child");
    for (int i = 0; i < theNodeList.getLength(); i++)
    theNodeList.item(i).setNodeValue("test");
    null

    You're trying to set the node value of an element, which cannot have a node value.
    You need to set the node value of the text-node child of the element instead.
    Or remove the current text-node child and append a new text-node child with the new value.

  • Modify or Update Attributes of a Node of an ALV

    Hi,
    i have an alv and a popup window which is opened on on_click event of alv. i'm changing the values of clicked row and i'm updating database table from new values but changed values of alv is not updated from node so they are not changed in alv.
    i want to refresh my alv so i must modify my node,
    How can i modify and bind my node with new values?
    Thanks.

    Hi Nurullah,
    Create a supply function for the node which you are using for binding to your ALV. Now when the user enters the new set of data in the popup and saves it into the database call the INVALIDATE method up on the context node. This will result in all the contextual data getting invalid & would re-call your supply function. Your supply function would then fetch the new modified set of values from the database & display them on your ALV. Hope this helps resolve your problem.
    Regards,
    Uday

  • API for modifying rep:Policy nodes

    The JCR API does not work when we are trying to modify/create rep:policy nodes.
    I tried to have a look at the CqActionsServlet and CQActions class but could not make much progress on understanding the implementation.
    Is there any API documentation on how  to do this.
    Basically the idea is to have a package of permission nodes (rep:policy) in the svn. As part of build process, we want to read the rep_policy.xmls and configure the corresponding permissions in CQ using RMI.

    Could you explain what you mean by the JCR API? While JCR 1.0 didn't have any API for managing access control policies, JCR 2.0 does.
    I don't know think AccessControlManager works over RMI. The JIRA issue is still open: https://issues.apache.org/jira/browse/JCR-2113
    There is a Sling bundle which you can install to manage ACLs via HTTP: http://sling.apache.org/site/managing-permissions-jackrabbitaccessmanager.html. Search this forum for prior discussions.
    For the use case you describe, you should be able to do that with content packages.

  • Modify or inserting the data from node data into standarad db table.

    Hi ...
    I want to modify the standard db table( say some hr table pa0002) ..with the values available in  node.
    But node consist of only 4 fields from pa0002.
    modify statement example:  modify itab1 from wa1.
    here wa1 should be same structure of itab1 then only above statement works.
    but in my scenario   node have only 4 fields , so how can i modify or insert the node values into Database table?
    Please help me in this.
    Regards
    Srinivas

    Hi,
    HR_MAINTAIN_MASTERDATA i dont know this is working for you or not. try once. and you serach any other fm/bapi available.
    Please go thorugh this...
    Infotype 0000 - FM for Inserting records ?
    Cheers,
    Kris.
    Edited by: kissnas on Jun 13, 2011 11:05 AM

  • XQuery Modify cannot be compiled

    Hi Gurus. Oracle EE 11.2 running on Linux. SQL Dev 3.2.30.09.
    I am fairly decent with XPath and XSLT but am new to XQuery. I've implemented a few simple FLOWRs but I am getting a bit more complex. I have an XQuery where I am trying to replace some data inline. I have pared the actual XML and the code down to a very simple example that still returns the same error.
    The error:
    ORA-19112: error raised during evaluation: XQuery Update connot be compiled
    19112. 00000 -  "error raised during evaluation: %s"
    *Cause:    The error function was called during evaluation of the XQuery expression.
    *Action:   Check the detailed error message for the possible causes.
    Error at Line: 7 Column: 14
    My Xquery:
    SELECT XMLQuery(
      'copy $tmp := $xmldata
           modify (replace value of node $tmp/MSG_CNTNT_XML/Message/msgHdr/Source/Format/text() with "abc")
         return $tmp'
         PASSING msg_cntnt_xml as "xmldata"
         RETURNING CONTENT ) xmlmct
    FROM (SELECT xmltype('<Message>
       <msgHdr>
          <Source>
             <Format>CTS</Format>
          </Source>
       </msgHdr>
    </Message>') msg_cntnt_xml
           FROM DUAL)
    Any general tips for XQuery and modify is cool but what I am really looking for is why am I getting the "Update connot be compiled". (BTW, notice the spelling error, connot - I'm not judging).
    Any tips for debugging or being able to display intermediate results would be awesome also.
    Thanks.
    LewisC

    Hi Lewis,
    What's your exact database version?
    You're trying to use XQuery Update Facility (a small extension to XQuery 1.0) which is only available from 11.2.0.3 and onwards.
    On previous versions, you can use updateXML() function :
    SQL> SELECT updateXML(
      2           msg_cntnt_xml
      3         , '/Message/msgHdr/Source/Format/text()'
      4         , 'abc'
      5         ) xmlmct
      6  FROM (SELECT xmltype('<Message>
      7     <msgHdr>
      8        <Source>
      9           <Format>CTS</Format>
    10        </Source>
    11     </msgHdr>
    12  </Message>') msg_cntnt_xml
    13         FROM DUAL)
    14  ;
    XMLMCT
    <Message><msgHdr><Source><Format>abc</Format></Source></msgHdr></Message>

  • Leaf nodes in Flex cluster

    Hi,
      can somebody explain what leaf nodes in flex cluster are?from documentation I see that they are nodes which dont have access to storage and they communicate with hub nodes.
      Can they have oracle db instances?If so how is data transfered between hub and leaf nodes?Through interconnect?Doesn't it overload the interconnect?
    Thanks
    Sekar

    Sekar_BLUE4EVER wrote:
    Thanks Aman...Still confused about this...Consider the following scenario
    |       H1       |<------->  |        H2         |   <------> |       H3        |
    |                   |              |                      |               |                    |
    | L1  L2  L3  |              | L1   L2   L3   |               | L1  L 2 L3   |
    | _________|              |___________|               |__________|
    H depicts the hub nodes and L depict the leaf nodes.Assume each Hub node has 3 leaf nodes attached to them.
    Suppose L1 connected to H1 needs a block and modifies it and after sometime L1 connected to H2 needs the same block then it must follow the same 2 way/3 way grant as in normal cache fusion right?
    Does this actually increase the number of hops since the leaf nodes are not directly connected?
    Do we have any control over the leaf node to hub node mapping or is it all automatically managed?
    Thanks
    The blocks are going to be accessed, modified at the Hub nodes only AFAIK as the Hub nodes are considered as DB Nodes. The Leaf Nodes are going to be considered as the Application Nodes. That's the reason, it's better to set up the instances running on the Hub Nodes only rather than the Leaf Nodes. Even if the instance runs on a Leaf Node, the communication is between the Hub and Leaf node only and it won't do any harm as both the nodes-Hub and Leaf(and the other nodes in the Leaf group) would be talking to each other directly. There is no VIP required on the Leaf Nodes so the connections by the database users would be only on the Hub Nodes, I guess and that means, the block movement would remain essentially the same.
    The number of network hops are reduced as you won't be having a requirement to have too many Hub Nodes since each Hub node can connect to  64(?) Leaf Nodes. So essentially, in your case, you would need only 4 Interconnects (2 on one Hub Node and 1 each on the remaining two) for the private interconnect and just 3 network links for the storage for each Hub node.
    I am not sure that I understood the last question of yours.
    HTH
    Aman....

  • Please help with JTree Node Duplication

    Iam building a JTree which should not allow node duplication.
    1.)First i construct a ArrayList which stores all the previous nodes.
    treeNodeNames=new ArrayList();
    2.)i call the method
              readTreeNodeNames((DefaultMutableTreeNode)dtm.getRoot());
    3.)The method readTreeNodeNames is
    public void readTreeNodeNames(DefaultMutableTreeNode node) {
              if(node.toString().toLowerCase().length()!=0) {
              treeNodeNames.add(node.toString().toLowerCase());
              for(Enumeration en=node.children();en.hasMoreElements();) {
                   DefaultMutableTreeNode childNode=(DefaultMutableTreeNode)en.nextElement();      
                   if(childNode.toString().toLowerCase().length()!=0) {
                        treeNodeNames.add(childNode.toString().toLowerCase());
                   if(!childNode.isLeaf()) {
                        readTreeNodeNames(childNode);
    4.)i have four menu when right click a node add,modify,add subnode,delete.
    node duplication fails in my case.when should i call this method?should i call while doing every above mentioned operations or in TreeModelEvent implementations?
    i have mailed this problem already two times.but no one has not replied.Kinldy consider it and give me a solution.Or anyone having code for JTree Node duplication please send me to [email protected]

    Hi all,
    Any ideas to overcome this problem.?
    Thanks,
    Krish

  • Binding Dropdownbykey to child node's attribute dynamically

    Hi..
    i am creating a child node "CHILD" and attribute attached to it "ATTR" dynamically. Also i create a dynamic dropdownbykey element and trying to attach the ATTR. then i get the following error. zdyn_date is data element with some fixed values. Please let me know as quick as possible.
    <b>"Adapter error in DROPDOWN_BY_KEY "KEY1" of view "ZDYN_DDKEY.MAIN": Context binding for property SELECTED_KEY cannot be resolved: The MAIN.1.CHILD node does not contain any elements"</b>
    METHOD WDDOMODIFYVIEW .
      DATA: LR_ROOT_INFO TYPE REF TO IF_WD_CONTEXT_NODE_INFO,
            LR_CHILD_INFO TYPE REF TO IF_WD_CONTEXT_NODE_INFO,
            cl_des type REF TO CL_ABAP_ELEMDESCR,
    ATTR_INFO TYPE WDR_CONTEXT_ATTRIBUTE_INFO.
      LR_ROOT_INFO = WD_CONTEXT->GET_NODE_INFO( ).
    CALL METHOD lr_root_info->ADD_NEW_CHILD_NODE
          EXPORTING
            NAME                         = 'CHILD'
          RECEIVING
            CHILD_NODE_INFO              = lr_child_info.
      ATTR_INFO-NAME = 'ATTR'.
      ATTR_INFO-TYPE_NAME = 'ZDYN_DATE'.
      CALL METHOD lr_child_info->ADD_ATTRIBUTE
        EXPORTING
          ATTRIBUTE_INFO = ATTR_INFO.
      DATA: LR_ROOT_CONTAINER TYPE REF TO CL_WD_TRANSPARENT_CONTAINER,
            LE_DD_KEY1 TYPE REF TO CL_WD_DROPDOWN_BY_KEY.
      LR_ROOT_CONTAINER ?= VIEW->GET_ELEMENT( 'ROOTUIELEMENTCONTAINER' ).
      CALL METHOD CL_WD_DROPDOWN_BY_KEY=>NEW_DROPDOWN_BY_KEY
        EXPORTING
          BIND_SELECTED_KEY      = 'CHILD.ATTR'
          ID                     = 'KEY1'
        RECEIVING
          CONTROL                = LE_DD_KEY1. .
      CALL METHOD CL_WD_MATRIX_LAYOUT=>NEW_MATRIX_LAYOUT
        EXPORTING
          CONTAINER = LR_ROOT_CONTAINER.
      CALL METHOD CL_WD_MATRIX_HEAD_DATA=>NEW_MATRIX_HEAD_DATA
        EXPORTING
          ELEMENT = LE_DD_KEY1.
      CALL METHOD LR_ROOT_CONTAINER->ADD_CHILD
        EXPORTING
        INDEX     =
          THE_CHILD = LE_DD_KEY1.
    ENDMETHOD.

    Hi ,
    can u try to create the node and its attribute in some other method..like in some action or in WDDOINIT instead of wddomodifyview .bcoz its recommended not to modify the data of node in wddomodifyview ..
    hope it will solve ur problem .
    Regards
    Yash

  • Is it possible to "un deny" permissions to a node?

    I realize the best practice is to always use Allow and avoid Deny due to having little control over the order in which the Allow/Deny statements are implemented and evaluated.
    We mistakenly Allowed access to a particular node, and merely want to remove the Allow statement, but this action produces a 'Deny' statement. Is there any way for me to go back to a blank box with no declared entry?

    Yes... here's the situation:
    User X is a member of both Group A and Group B
    Group A previously had Read/Modify/Create/Delete/Replicate to Node XYZ; permissions have been modified for this node so they are now only allowed Read access for Node XX. When I look at the Permissions Tab in the Security Console, Node XYZ has * next to the empty boxes for Modify/Create/Delete/Replicate:
    Group B has ALLOW for Read/Modify/Create/Delete/Replicate to Node XYZ.
    When User X is a member of both groups, the lower Group B permissions are trumping, and the user is unable to modify the content in node XYZ.
    If I remove User X from Group A, they can edit the content in node XYZ.
    When you say 'So you can go to useradmin and safely remove the permission', is 'useradmin' the Security Console? Or is there some other back door where I can remove the DENY statement?

  • Your Computer was restarted because of a problem

    Hi, I got a Macbook pro last year and it was working fine until a few months back the model is an old A1150 and I am getting this problem. Everytime I turn on the computer it restart by itself after that it works fine and I get this error.
    I have replace my HD and installed the new OS X wich resolve the problem but its back again.
    Interval Since Last Panic Report:  15573 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    002EE0A1-29E0-171B-0595-E4D1229996BE
    Thu Oct 10 10:33:32 2013
    panic(cpu 0 caller 0xffffff800604450e): "a freed zone element has been modified in zone: HFS node"@/SourceCache/xnu/xnu-2050.48.11/osfmk/kern/zalloc.c:219
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80bc60b570 : 0xffffff800601d636
    0xffffff80bc60b5e0 : 0xffffff800604450e
    0xffffff80bc60b620 : 0xffffff8006043d52
    0xffffff80bc60b700 : 0xffffff80062f6bf2
    0xffffff80bc60b770 : 0xffffff80062f83ce
    0xffffff80bc60b870 : 0xffffff8006300b42
    0xffffff80bc60ba90 : 0xffffff8006118894
    0xffffff80bc60bad0 : 0xffffff80060f27cc
    0xffffff80bc60bb50 : 0xffffff80060f21ae
    0xffffff80bc60bc10 : 0xffffff800610cac2
    0xffffff80bc60bd90 : 0xffffff800610572c
    0xffffff80bc60bf50 : 0xffffff80063e97ba
    0xffffff80bc60bfb0 : 0xffffff80060cf453
    BSD process name corresponding to current thread: mdworker
    Mac OS version:
    12F37
    Kernel version:
    Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    Kernel UUID: B1B58405-A2B2-3C44-B25D-495053D52AB5
    Kernel slide:     0x0000000005e00000
    Kernel text base: 0xffffff8006000000
    System model name: MacBookPro4,1 (Mac-F42C89C8)
    System uptime in nanoseconds: 72173589356
    last loaded kext at 25062844072: com.apple.driver.AudioAUUC          1.60 (addr 0xffffff7f878e1000, size 32768)
    loaded kexts:
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f2
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AppleHDAHardwareConfigDriver          2.4.7fc2
    com.apple.driver.AppleHDA          2.4.7fc2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.CSRBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.GeForce          8.1.6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.nvidia.NVDAStartup          8.1.6
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleUSBTrackpad          237.1
    com.apple.driver.AppleUSBTCKeyEventDriver          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.CSRHIDTransitionDriver          4.1.7f2
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleUSBHub          623.4.4
    com.apple.driver.AirPortBrcm43224          600.36.17
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.iokit.AppleYukon2          3.2.3b1
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleUSBUHCI          621.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.4.7fc2
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.4.7fc2
    com.apple.iokit.IOHDAFamily          2.4.7fc2
    com.apple.nvidia.nv50hal          8.1.6
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.NVDAResman          8.1.6
    com.apple.driver.IOPlatformPluginFamily          5.4.1d11
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOATAPIProtocolTransport          3.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.iokit.IO80211Family          530.5
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          630.4.5
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.5 GHz, 6 GB, SMC 1.27f3
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR2 SDRAM, 667 MHz, 0xCE00000000000000, 0x4D342037305435323637415A332D43463720
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz, 0xCE00000000000000, 0x4D342037305435363633435A332D43453620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.16)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 12 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD10JPVX-22JC3T0, 1 TB
    Parallel ATA Device: HL-DT-ST DVDRW  GSA-S10N
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd400000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x021a, 0x5d200000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8205, 0x1a100000 / 2

    That panic was not caused by third-party software. If the problem is recurrent, the possibilities are:
    A stale or corrupt kernel cache
    A damaged OS X installation
    A fault in a peripheral device, if any
    Corrupt non-volatile memory (NVRAM)
    An internal hardware fault (including incompatible memory)
    An obscure bug in OS X
    You may already have ruled out some of these.
    Rule out #1 by booting in safe mode and then rebooting as usual. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    You can rule out #2 and #3 by reinstalling the OS and testing with non-essential peripherals disconnected and aftermarket expansion cards removed, if applicable. Sometimes a clean reinstallation may solve a problem that isn't solved by reinstalling in place.
    Corrupt NVRAM, which rarely causes panics, can be ruled out by resetting it.
    If your model has user-replaceable memory, and you've upgraded the memory modules, reinstall the original memory and see whether there's any improvement. Be careful not to touch the gold contacts. Clean them with a mild solvent such as rubbing alcohol. Aftermarket memory must exactly match the technical specifications for your model.
    The Apple Hardware Test or Apple Diagnostics, though generally unreliable, will sometimes detect a fault. A negative test can't be depended on. Run the extended version of the test.
    In the category of obscure bugs, reports suggest that FileVault may trigger kernel traps under some unknown conditions. Most, though not all, of these reports seem to involve booting from an aftermarket SSD. If those conditions apply to you, try deactivating FileVault.
    Connecting more than one display is another reported trigger for OS X bugs.
    If your system is not fully up to date, running Software Update might get you a bug fix.
    In rare cases, a malformed network packet from a defective router or other network device can cause panics. Such packets could also be sent deliberately by a skillful attacker. This possibility is something to consider if you run a public server that might be the target of such an attack.
    If none of the above applies, make a "Genius" appointment at an Apple Store to have the machine tested. You may have to leave it there for several days. There isn't much point in doing this unless you can reproduce the panic, or if you can't, it happens often enough that it's likely to be repeated at the store. Otherwise you may be told that nothing is wrong.
    Print the first page of the panic report and bring it with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you know how to restore, and you have at least  two independent backups.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    *An SSD doesn't need to be zeroed.

  • Please help with an ICM script editor syntax question.

    I need to modify a set variable node.  What I have now is Call.PeripheralVariable8+".wav" and this works.  What I need it to say is Call.PeripheralVariable8+anything+".wav" but when I insert an * for the anything it's seen as a multiplier.  What's the syntax to do this?  The anything I need to add is _9xxx where xxx are other numbers, but the _9 will be in all, if that helps any.  Thanks in advance !!

    You can use the concatenate() function to build up your string, as you no doubt know.
    As far as the wildcard goes ... your intention must be to try to SET the call variable and later on test the call variable with an IF node. Is that right?
    You would be able to test parts of the string using the substr() function - which is based on character position. If that is a fixed value that you know, it's easy. If it's not, you can first use the find() function to locate something (like the "_9"), returning the position, and then use the substr() function to pull it off.
    Can you write some pseudo-code here to define exactly your intention? You can set up a dummy script and send a dummy call through using Call Tracer and watch the output to see how your code is working.
    Regards,
    Geoff

  • How to build my own SOAP envelope

    Hi
    after a lot of work I have now realised that my SOAP to SOAP scenario can't use SAP XI std SOAP ENVELOPE on the receiver part.
    How to I build my own SOAP ENV in my RECEIVER payload? iMaybe in the mapping or in the WSDL/XSD?
    Any guides or experienses are welcome
    hope someone can help
    cheers

    Hi Bowie,
    Here is one possible approach...
    1) Set "Do Not Use SOAP Envelope" in your Receiver SOAP Adapter.
    2) Add this xsl as a second step in your interface mapping.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
          <env:Body>
            <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
          </env:Body>
        </env:Envelope>
      </xsl:template>
      <xsl:template match="@*|node()">
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    </xsl:stylesheet>
    You can then modify the soap envelope nodes above to create what you need.
    -Russ

  • How to build my own HDR photoshop plugin?

    Hi, I am a true fresh here and trying to build a HDR photoshop plugin, with an existing HDR merging algorithm in a static C lib. What I need to do is just to provide a file dialog to read in several images, then to process pixels of these images with the C lib, and last return a result image. In this case, which type of plugin should I focus? Automation, filter, or any others ? Besides that, what should be the key to read files and get their pixels? Would anyone be so kind to offer a hint? Thank you very much!

    Hi Bowie,
    Here is one possible approach...
    1) Set "Do Not Use SOAP Envelope" in your Receiver SOAP Adapter.
    2) Add this xsl as a second step in your interface mapping.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
          <env:Body>
            <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
          </env:Body>
        </env:Envelope>
      </xsl:template>
      <xsl:template match="@*|node()">
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    </xsl:stylesheet>
    You can then modify the soap envelope nodes above to create what you need.
    -Russ

Maybe you are looking for

  • Screen designing - doubt in call transaction

    Hi Experts I have created the screen with 5 pushbuttons. If i click the pushbutton program calling the T.code. for example : one push button is for T.code 'MM03'. Byaccessing this i have created the material. Once the material is saved  how to go bac

  • Hard Drive Crashed with Grey Apple Screen and Spinning Circle

    I need some help!! My G5 desktop computer had Font error, and then it crashed. I pressed the power button to restart and it won't booth up! All I get it the Grey Apple Screen and Spinning Circle with loud fan noise. I've tried using the install CD to

  • Problem in delta load with Z field

    Hello Experts, We have CRM 5.0 system and as per the requirement we have added ZFIELD to BUT000 table. This field is added to BUT000 via EEWB – Easy Enhancement Workbench. This field is also BW enabled. BW enabled means – this field is used / availab

  • Syntax issue when having more than 20 warnings

    Hello, when having more than 20 warnings in a compilation unit (package, procedure ...), SQL Developer ( version 1.5.0.53) doesn't always flag an error (like, for example, a misspelled local variable), so instead of a compile-time error a runtime err

  • Interesting Waveform Logging to Excel Chanllenge

    Hello, I have simulated two sinusoidal signals. One is a sweep signal. I would like to log the data points of the signals to excel and explore the possibility of plotting the same graph in excel as it is in LabVIEW.  I have atached the VIs. Thanks a