Transfering content between BWA installations

Hi,
I just want to find out what option I have if I want to transfer content between two physically separated BWA installations.
Any hint will be mostly appreciated. Using DVDs, CDs as transfer medium is desired.
Regards,
Stratos

Stratos, I am curious if standard BWA Indexes are at all compatible with BWA Indexes for Explorer. For Explorer you need these additional new meta-data BWA Indexes for Text, Authorizations and Conversion Factors and to update main Indexes to Explorer form (this is what I just got first hand from Ty Miller from SAP
Regards,
-Vitaliy

Similar Messages

  • Transfering contents between 2 nokia mobiles

    hey guys....
    does any one know how to transfere data between 2 nokia mobile phones ( 6680 and N70)?!!...I want to transfere all the text messages from onbe mobile to another.
    thanks

    The N70 should be able to install the transfer app on the 6680 I would think - it did on my 6260. It should search for a phone, then install the program like any other.
    Then it just dragged everything from the 6260 to the N70, apart from the messages, but as ricksvill suggested, you can use Lifeblog for that.Message Edited by richcowell on 17-Jun-2006
    10:04 AM
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Lost information when transferring content between authorised macs.

    I transferred purchased tv shows between 2 authorised macs but one of them as lost all the accompanying show information, is there any way to get this back?
    Thanks
    Dave

    It comes down to two main cases:
    Case 1) Old Mac has RJ45 "regular" Ethernet port or AAUI (about 14-pin) Ethernet port:
    In this case, all can be done with Ethernet. Buy a used Transceiver \[AAUI to RJ45 Ethernet] for about US$10 and cable the old Mac directly to your Router. Any Mac running 10.3.9 or older can share files using AppleTalk-over-Ethernet. Enable it on both ends in the Sharing or File Sharing Control Panel and the System Preferences > Sharing panel. Illustrated instructions in this article:
    http://homepage.mac.com/car1son/os9xnet_nfilesharing.html
    If your old Mac OS is 7.5.3 or later, it will work pretty much as described in the article. If your oldest new Mac OS is also 10.4 or later, you will need to start at the older Mac and use the IP Address of the newer Mac to make the connection.
    Case 2) Old Mac has no RJ45 Ethernet or AAUI Ethernet, only round Printer port \[AppleTalk/Localtalk port]:
    In this case, you will want to get a used converter -- the same one that will allow the LaserWriter to work with the newer Macs. The "trick" is that these converters have always supported up to 8 devices -- both Macs and Printers -- for Printer Sharing and for File Sharing. The converter can be any one of:
    • Farallon EtherMac iPrint LT (NOT LS)
    • Asante AsantTalk
    • an older Mac that has both Ethernet and round printer port for AppleTalk/Localtalk and Apple's free but unsupported Ethernet Bridge software.
    Connect the Ethernet side of the Converter/Bridge to your Router. Connect the AppleTalk/Localtalk side to up to eight of the AppleTalk/LocalTalk computers and printers using PhoneNet boxes and telephone cords. Remember to terminate the last open PhoneNet jack.

  • Drag and Drop of cell content between 2 tables

    Hi Guys,
    Iam into implementing drag and drop of cell contents between 2 different tables,say Table1 and Table2.(Iam not dragging and dropping rows or cells,Just copying the content of one cell to another).
    Have extended the java tutorial class "TableTransferHandler" and "StringTransferHandler" under http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#ExtendedDndDemo to satisfy my needs.
    The drag is enabled for Table1 and table2 as follows.
    jTable1.setDragEnabled(true);
    jTable1.setTransferHandler(new TableTransferHandler());
    jTable2.setDragEnabled(true);
    jTable2.setTransferHandler(new TableTransferHandler());
    Dont be taken aback with the code I have put.It just to show what I have done..
    My questions are put at the end of the post..
    //String Transfer Handler class.
    public abstract class StringTransferHandler extends TransferHandler {
        protected abstract String exportString(JComponent c);
        protected abstract void importString(JComponent c, String str);
        protected abstract void cleanup(JComponent c, boolean remove);
        protected Transferable createTransferable(JComponent c) {
            return new StringSelection(exportString(c));
        public int getSourceActions(JComponent c) {
            return COPY_OR_MOVE;
        public boolean importData(JComponent c, Transferable t) {
            if (canImport(c, t.getTransferDataFlavors())) {
                try {
                    String str = (String)t.getTransferData(DataFlavor.stringFlavor);
                    importString(c, str);
                    return true;
                } catch (UnsupportedFlavorException ufe) {
                } catch (IOException ioe) {
            return false;
        protected void exportDone(JComponent c, Transferable data, int action) {
            cleanup(c, action == MOVE);
        public boolean canImport(JComponent c, DataFlavor[] flavors) {
              JTable table = (JTable)c;         
             int selColIndex = table.getSelectedColumn();
            for (int i = 0; i < flavors.length; i++) {
                if ((DataFlavor.stringFlavor.equals(flavors))&& (selColIndex !=0)) {
    return true;
    return false;
    }//TableTransferHandler classpublic class TableTransferHandler extends StringTransferHandler {
    private int[] rows = null;
    private int addIndex = -1; //Location where items were added
    private int addCount = 0; //Number of items added.
    protected String exportString(JComponent c) {
    JTable table = (JTable)c;
    rows = table.getSelectedRows();
    StringBuffer buff = new StringBuffer();
    int selRowIndex = table.getSelectedRow();
    int selColIndex = table.getSelectedColumn();
    String val = table.getValueAt(selRowIndex,selColIndex).toString();
    buff.append(val);
    return buff.toString();
    protected void importString(JComponent c, String str) {
    JTable target = (JTable)c;
    DefaultTableModel model = (DefaultTableModel)target.getModel();
    //int index = target.getSelectedRow();
    int row = target.getSelectedRow();
    int column = target.getSelectedColumn();
    target.setValueAt(str, row, column);
    protected void cleanup(JComponent c, boolean remove) {
    }Now I want to put in the following functionality into my program...
    [1]prevent dragging and dropping text in to the same table.That means I dont want to drag a cell content from Table1  and drop to another cell in Table1. Want to drag and drop cell content only from Table1 to Table2.
    [2]Change cursor on a un-defined Target. That means how to prevent a drag from a particular column in Table1.Also how to prevent a drop to a particular column in Table2. How to change the cursor to a "NO-DRAG" cursoror "NO-DROP" cursor.
    Could it be done using Drag Source Listener and drop Target Listener?.
    If yes,How can these listeners attached to the table and how to do it?
    If No,How Could it be done?
    [3]Want to change the background colour of the cell being dragged and also the background colour of the target cell where the drop is made...
    [4]Is there any out of the box way to make an undo in the target cell(where drop was made) so that the old cell value is brought back.
    How can I extend my code to take care of the above said things.
    Any help or suggestions is greatly appreciated.....
    Edited by: Kohinoor on Jan 17, 2008 10:58 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Guys,
    Iam into implementing drag and drop of cell contents between 2 different tables,say Table1 and Table2.(Iam not dragging and dropping rows or cells,Just copying the content of one cell to another).
    Have extended the java tutorial class "TableTransferHandler" and "StringTransferHandler" under http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#ExtendedDndDemo to satisfy my needs.
    The drag is enabled for Table1 and table2 as follows.
    jTable1.setDragEnabled(true);
    jTable1.setTransferHandler(new TableTransferHandler());
    jTable2.setDragEnabled(true);
    jTable2.setTransferHandler(new TableTransferHandler());
    Dont be taken aback with the code I have put.It just to show what I have done..
    My questions are put at the end of the post..
    //String Transfer Handler class.
    public abstract class StringTransferHandler extends TransferHandler {
        protected abstract String exportString(JComponent c);
        protected abstract void importString(JComponent c, String str);
        protected abstract void cleanup(JComponent c, boolean remove);
        protected Transferable createTransferable(JComponent c) {
            return new StringSelection(exportString(c));
        public int getSourceActions(JComponent c) {
            return COPY_OR_MOVE;
        public boolean importData(JComponent c, Transferable t) {
            if (canImport(c, t.getTransferDataFlavors())) {
                try {
                    String str = (String)t.getTransferData(DataFlavor.stringFlavor);
                    importString(c, str);
                    return true;
                } catch (UnsupportedFlavorException ufe) {
                } catch (IOException ioe) {
            return false;
        protected void exportDone(JComponent c, Transferable data, int action) {
            cleanup(c, action == MOVE);
        public boolean canImport(JComponent c, DataFlavor[] flavors) {
              JTable table = (JTable)c;         
             int selColIndex = table.getSelectedColumn();
            for (int i = 0; i < flavors.length; i++) {
                if ((DataFlavor.stringFlavor.equals(flavors))&& (selColIndex !=0)) {
    return true;
    return false;
    }//TableTransferHandler classpublic class TableTransferHandler extends StringTransferHandler {
    private int[] rows = null;
    private int addIndex = -1; //Location where items were added
    private int addCount = 0; //Number of items added.
    protected String exportString(JComponent c) {
    JTable table = (JTable)c;
    rows = table.getSelectedRows();
    StringBuffer buff = new StringBuffer();
    int selRowIndex = table.getSelectedRow();
    int selColIndex = table.getSelectedColumn();
    String val = table.getValueAt(selRowIndex,selColIndex).toString();
    buff.append(val);
    return buff.toString();
    protected void importString(JComponent c, String str) {
    JTable target = (JTable)c;
    DefaultTableModel model = (DefaultTableModel)target.getModel();
    //int index = target.getSelectedRow();
    int row = target.getSelectedRow();
    int column = target.getSelectedColumn();
    target.setValueAt(str, row, column);
    protected void cleanup(JComponent c, boolean remove) {
    }Now I want to put in the following functionality into my program...
    [1]prevent dragging and dropping text in to the same table.That means I dont want to drag a cell content from Table1  and drop to another cell in Table1. Want to drag and drop cell content only from Table1 to Table2.
    [2]Change cursor on a un-defined Target. That means how to prevent a drag from a particular column in Table1.Also how to prevent a drop to a particular column in Table2. How to change the cursor to a "NO-DRAG" cursoror "NO-DROP" cursor.
    Could it be done using Drag Source Listener and drop Target Listener?.
    If yes,How can these listeners attached to the table and how to do it?
    If No,How Could it be done?
    [3]Want to change the background colour of the cell being dragged and also the background colour of the target cell where the drop is made...
    [4]Is there any out of the box way to make an undo in the target cell(where drop was made) so that the old cell value is brought back.
    How can I extend my code to take care of the above said things.
    Any help or suggestions is greatly appreciated.....
    Edited by: Kohinoor on Jan 17, 2008 10:58 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How do I remove OSX/FkCodec-A  from my Mac mini? I am running Yosemite and the path and file name is /Volumes/macvexe/macvexe.app/Contents/MacOS/mac.installer. Sophos was unble to remove and it will not go to trash.

    Sophos found this on my mac mini (early 2009) - OSX/FkCodec-A and could not clean it up. I am running Yosemite 10.10 and the path and filename for this Trojan is   /Volumes/macvexe/macvexe.app/Contents/MacOS/mac.installer. Could someone please tell me how to get rid of it as Sophos is unable to remove and Trash can remove it.

    outdoor,
    How did you originally install iWork on the Mac Pro?  was it preinstalled?  The machine seems old enough that you should have an original install DVD that came with the mac pro.
    Amazon has the install DVDs for iWork '09:
    http://www.amazon.com/s/ref=nb_sb_noss_1?url=search-alias%3Daps&field-keywords=i Work+%2709
    To move tables between sheets you can select the table, copy, then paste after activating (by clicking) the destination sheet.  If you really mean move, then use the cut command (rather than copy).
    To copy... use the menu item "Edit > Copy"
    To cut... use the menu item "Edit > Cut"
    Then paste in the destination

  • Import/Export Portal Content between EP6 6.20 and 6.40

    Hi there,
    We are about to setup a second portal in Europe on 6.40, while the US portal will still be a EP6 SP2 on 6.20 for some time.
    I was wondering about the possibilities to share portal content between those 2 installations, especially iViews and pages (not using remote iViews). As long as the name of the related PAR files (code link) are the same, this should work.
    On the other hand, iViews and pages will have a different set of parameters like "Allow Client-Side Caching" or "Use API of Tray" based on different portal versions. What will happend when importing/exporting these objects from 6.20 to 6.40 or the other way around?
    Thanks,
    Florian

    Ivo, thank you for your reply.
    But I think mapping ports doesn't solve our problem.
    WAS 6.20:
    Just the context path will be send in the header field 'location' to the browser (located in the internet).
    In case of a redirect the browser mixes the server name of the sender (the reverse proxy) and the context path and sends the request to the reverse proxy. The reverse proxy forwards the request to the WAS 6.20 intranet server.
    WAS 6.40:
    The header field 'location' contains now the whole URL (with the server name of the WAS 6.40 system, which is only accessible from our intranet).
    In case of a redirect the browser takes the content of the header field 'location' and sends the request to the not accessible WAS 6.40 intranet server. Of course that doesn't work.
    So it it depends on the content of the header field 'location'.
    What can we do in WAS 6.40, so that the header field 'location' contains only the context path as it has done in WAS 6.20?
    Regards,
    Uwe

  • Transfer SLD content between SLDs in SLD 640

    Is it possible to transfer content between two SLD systems in SLD version 640?
    1.) I have  a SLD (call it sldA) that contains the ABAP and JAVA data about DEV and QA system.
    2.) I have another SLD (call it sldB) that contains the ABAP and JAVA data about my Production systems.
    I'm running SLD version 6.40.0 - not 700.
    Is there a way to get the content of sldA into sldB and keep it syncronized? I'd like to maintain two distinct SLDs, but I'd like sldB to have information about the entire landscape. This would be a one way push from sldA to sldB. I'd like this to be an automatic process, not something I have to do manually.

    Though I have not worked on such environment. Your query looks interesting...I tried to find something related.
    About SLD I am sure you must be aware of "SLD Bridge Forwarding" , It exists in 700 and 6.40 as well...
    Is it possible to transfer content between two SLD systems in SLD version 640?
    As per the  [SLD6.40 Post Installation |https://websmp102.sap-ag.de/~sapidb/011000358700001149582007E] Document I think it is possible.
    You might have already checked this document, If not please check page 12.
    It says you need to check gateway connections & RFCs and also need to update CIM contents.(Note 669669)
    To forward data from QA& DEV to Prod - Configure the bridge between this and If you do not want to receive data from ABAP systems in your SLD, set the parameter StartRfcServer to false.( Check this [Link|http://help.sap.com/saphelp_nwpi71/helpdata/en/43/da21ba13660aa5e10000000a1553f6/frameset.htm])
    I think this will make your process automatic from sldA to sldB and also you will get entire landscape information in sldB (Correct me if I am wrong)
    Let us know if it was helpful....
    Cheers

  • Difference between the Installations

    Hi at All ..
    I'm new as an Employee, which should install the BO Integration Kit for Sap.
    Can anybody help me and tell the Difference between the Installations for Desktop / or for Servers ?
    As i can see on the Installation & Configuration Guide on page 10 i can Select the Installation Type as Desktop / or Server.
    As i suppose the Desktop is the Installation for my Desktop Environment. (e.g. for my Workstation. An local Installation)
    But, was does an Server Installation in this Case, means ?
    Thanx's for Help.
    Best Regards
    Beat

    Hello,
    you need the SAP ITK for both.
    Your Server (SAP BusinessObjects Enterprise) needs to connect to the SAP Backend like BW and your Clients where you develop content (Universe Designer, Crystal Reports, etc.) needs to connect to the SAP Backend like BW.
    Thats why you have these two options.
    Regards
    -Seb.

  • Kernel Panic while transfering data between MAC HD and network drives

     Kernel Panic while transfering data between MAC HD and network drives. it's an iMAC 24" 2011. Snow Leopard 10.6.8. I can't seem to find the cause to this.Thank you guys !
    Here is the log fine  with error code:
    Error code: 0x0000000000000000
    Interval Since Last Panic Report:  5 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    3C5AA43F-D876-4F9D-A831-D8043218C6E0
    Tue Aug 16 14:54:46 2011
    panic(cpu 0 caller 0xffffff80002d1208): Kernel trap at 0xffffff7f815c6b54, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000005, CR3: 0x0000000000100000, CR4: 0x0000000000040660
    RAX: 0x0000000000000000, RBX: 0xffffff8000000000, RCX: 0x0000000001000000, RDX: 0xffffff8013ae9200
    RSP: 0xffffff80de173ea0, RBP: 0xffffff80de173ed0, RSI: 0x0000000000000000, RDI: 0xffffff8013ae9200
    R8:  0x0000000000000001, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff8016207008, R14: 0xffffff8015a228f8, R15: 0x0000000000000000
    RFL: 0x0000000000010246, RIP: 0xffffff7f815c6b54, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80de173b40 : 0xffffff8000204d15
    0xffffff80de173c40 : 0xffffff80002d1208
    0xffffff80de173d90 : 0xffffff80002e3f4a
    0xffffff80de173da0 : 0xffffff7f815c6b54
    0xffffff80de173ed0 : 0xffffff80002524fe
    0xffffff80de173f00 : 0xffffff8000478c7f
    0xffffff80de173f40 : 0xffffff7f8159b158
    0xffffff80de173fa0 : 0xffffff80002c8527
          Kernel Extensions in backtrace (with dependencies):
             com.thursby.kext.cifs(5.1)@0xffffff7f815ae000->0xffffff7f815cffff
                dependency: com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000
             com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000->0xffffff7f815adfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 105374280984
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet            3.1.3
    com.vmware.kext.vmioplug       3.1.3
    com.vmware.kext.vmci                3.1.3
    com.trendmicro.kext.KERedirect              1.0.0
    com.trendmicro.kext.filehook   1.5.0
    com.vmware.kext.vmx86            3.1.3
    com.thursby.kext.cifs    5.1
    com.thursby.kext.NetBIOS         5.1
    com.apple.filesystems.smbfs     1.6.7 - last loaded 60402747883
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AppleTyMCEDriver      1.0.2d2
    com.apple.driver.AppleHWSensor           1.9.3d0
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleUpstreamUserClient      3.5.7
    com.apple.driver.AppleMikeyHIDDriver                1.2.0
    com.apple.driver.AppleMCCSControl     1.0.20
    com.apple.driver.AppleIntelPenrynProfile           17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyDriver       2.0.5f14
    com.apple.kext.ATIFramebuffer              6.3.6
    com.apple.driver.AppleBluetoothMultitouch     54.3
    com.apple.driver.AppleIntelHDGraphics               6.3.6
    com.apple.driver.AppleIntelNehalemProfile       11
    com.apple.driver.AudioIPCDriver             1.1.6
    com.apple.driver.AppleHDA       2.0.5f14
    com.apple.driver.AppleGraphicsControl               2.10.6
    com.apple.ATIRadeonX3000       6.3.6
    com.apple.iokit.AppleBCM5701Ethernet              3.0.5b8
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPort.Atheros9388   426.35.3
    com.apple.driver.ACPI_SMC_PlatformPlugin      4.7.0a1
    com.apple.driver.AppleLPC         1.5.1
    com.apple.driver.AppleBacklight              170.0.46
    com.apple.kext.AppleSMCLMU                1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB        6.3.6
    com.apple.driver.AppleUSBCardReader                2.6.1
    com.apple.driver.AppleIRController        303.8
    com.apple.iokit.SCSITaskUserClient        2.6.8
    com.apple.iokit.IOAHCIBlockStorage      1.6.4
    com.apple.driver.AppleUSBHub               4.2.4
    com.apple.driver.AppleFWOHCI               4.7.3
    com.apple.BootCache   31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib                1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort             2.1.7
    com.apple.driver.AppleUSBEHCI              4.2.4
    com.apple.driver.AppleUSBUHCI             4.2.0
    com.apple.driver.AppleACPIButtons      1.3.6
    com.apple.driver.AppleRTC        1.3.1
    com.apple.driver.AppleHPET      1.5
    com.apple.driver.AppleSMBIOS                1.7
    com.apple.driver.AppleACPIEC 1.3.6
    com.apple.driver.AppleAPIC      1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient         142.6.0
    com.apple.security.sandbox       1
    com.apple.security.quarantine  0
    com.apple.nke.applicationfirewall           2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement     142.6.0
    com.apple.driver.AppleProfileReadCounterAction           17
    com.apple.driver.AppleProfileTimestampAction               10
    com.apple.driver.AppleProfileThreadInfoAction               14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction       10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface           74.2
    com.apple.iokit.IOBluetoothSerialManager         2.4.5f3
    com.apple.iokit.IOSerialFamily   10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.IOBluetoothHIDDriver               2.4.5f3
    com.apple.driver.AppleMultitouchDriver             207.11
    com.apple.driver.DspFuncLib     2.0.5f14
    com.apple.iokit.IOAudioFamily  1.8.3fc2
    com.apple.kext.OSvKernDSPLib                1.3
    com.apple.driver.AppleSMBusController              1.0.10d0
    com.apple.iokit.IOFireWireIP     2.0.3
    com.apple.iokit.AppleProfileFamily         41
    com.apple.driver.AppleHDAController   2.0.5f14
    com.apple.iokit.IOHDAFamily     2.0.5f14
    com.apple.iokit.IO80211Family  320.1
    com.apple.iokit.IONetworkingFamily      1.10
    com.apple.driver.IOPlatformPluginFamily            4.7.0a1
    com.apple.driver.AppleSMBusPCI           1.0.10d0
    com.apple.driver.AppleBacklightExpert 1.0.1
    com.apple.iokit.IONDRVSupport              2.2
    com.apple.driver.AppleSMC       3.1.0d5
    com.apple.driver.AppleThunderboltEDMSink     1.1.1
    com.apple.driver.AppleThunderboltEDMSource               1.1.1
    com.apple.kext.ATI6000Controller           6.3.6
    com.apple.kext.ATISupport        6.3.6
    com.apple.iokit.IOGraphicsFamily            2.2
    com.apple.driver.AppleThunderboltDPOutAdapter         1.3.2
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily   1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter   1.1.6
    com.apple.driver.AppleUSBHIDKeyboard             141.5
    com.apple.driver.AppleHIDKeyboard     141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController               2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController        2.4.5f3
    com.apple.iokit.IOBluetoothFamily         2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass              2.6.7
    com.apple.iokit.IOSCSIBlockCommandsDevice   2.6.8
    com.apple.iokit.IOUSBHIDDriver               4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice      2.6.8
    com.apple.iokit.IOBDStorageFamily        1.6
    com.apple.iokit.IODVDStorageFamily     1.6
    com.apple.iokit.IOCDStorageFamily        1.6.1
    com.apple.driver.AppleUSBMergeNub 4.2.4
    com.apple.driver.AppleUSBComposite  3.9.0
    com.apple.driver.XsanFilter        402.1
    com.apple.iokit.IOAHCISerialATAPI         1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily              2.6.8
    com.apple.driver.AppleThunderboltNHI               1.2.6
    com.apple.iokit.IOThunderboltFamily    1.4.9
    com.apple.iokit.IOFireWireFamily            4.2.6
    com.apple.iokit.IOUSBUserClient             4.2.4
    com.apple.driver.AppleFileSystemDriver              2.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOUSBFamily     4.2.4
    com.apple.driver.AppleEFIRuntime         1.4.0
    com.apple.iokit.IOHIDFamily      1.6.6
    com.apple.iokit.IOSMBusFamily                1.1
    com.apple.security.TMSafetyNet             6
    com.apple.kext.AppleMatch      1.0.0d1
    com.apple.driver.DiskImages     289
    com.apple.iokit.IOStorageFamily              1.6.3
    com.apple.driver.AppleACPIPlatform     1.3.6
    com.apple.iokit.IOPCIFamily       2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    System Profile:
    Model: iMac12,1, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDS722020ALA330, 1.82 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Officejet Pro 8000 A809, 0x03f0  (Hewlett Packard), 0x3612, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa132000 / 8
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 6

    There is something incompatible would be my guess. Did you disconnect all your peripherals in safe mode just to check?
    You might now create a new temporary user account. Log into the new account. Do the panics still occur?
    I would also visit The XLab FAQs and read the FAQ on diagnosing kernel panics. Sometimes they can be difficult to track down. Looking at each new panic log would help determine if it's cause is associated with the same extensions.

  • Transferring content from old apple ID to a new one?

    As question says I need help transferring content from old apple ID to a new one as my old apple ID was reported for spam and now I can't use it, thanks!
    [email protected]

    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    FAQs   http://support.apple.com/kb/HE37
    However... To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Is there a way to turn off using ram as intermediary when transfering files between 2 internal hdds? (write cache is off on all drives)

    right forum?  first time here. none of the options seem perfect. so i guess this applies to 'setup.' i tried to describe what's happening verbosely from the start of a file transfer to completion of writing file to 2nd hard drive.
    win 7 64bit home - i2600k 3.4ghz - 8gb of ram - 2hdd 1 ssd
    I have this problem when transferring files between 2 internal hard drives. one is unhealthy (slow write speeds but not looking for advice to replace it because it serves its unimportant purpose). so, the unhealthy drive drops into PIO mode - that's acceptable.
    however, a little over 1gb of any file transfer is cached in RAM during the file transfer. after the file transfer window closes, indicating the transfer is "complete" (HA!), it still has 1gb to write from RAM which takes about 30minutes. This would
    not be a problem if it did not also earmark an additional 5gb of ram (never in use), leaving 1gb or less 'free' for programs. this needlessly causes my pc to be sluggish - moreso than a typical file transfer file between 2 healthy drives. i have windows write
    caching turned off on all drives. so this is a different setting i can't figure out nor find after 2 hours of google searches.
    info from taskmanager and resource monitor.
    idle estimates: total 8175, cached 532, available 7218, free 6771 and the graph in taskman shows about 1gb memory in use.
    at the start of a file transfer:  8175,  2661,  6070,  4511free and ~2gb of ram used in graph. No problems, yet.
    however, as the transfer goes on, the free ram value drops to less than 1gb (1gb normal +1gb temporary transfer cache +5gb of unused earmarked space = ~7gb),  cached value increases, but the amount of used ram remains relatively unchanged (2gb
    during transfer and slowly drops to idle values as remaining bits are written to the 2nd hard drive).  the free value is even slower to return to idle norms after the transfer completes writing data to 2nd hard drive from RAM. so, it's earmarking an addition
    5gb of ram that are completely unused during this process.  *****This is my problem*****
    Is there any way to turn this function off or limit its maximum size. in addition to sluggishness, it poses risk to data integrity from system errors/power loss, and it's difficult to discern the actual time of transfer completion, which makes it difficult
    to know when it's safe to shutdown my pc (any data left in ram is lost, and the file transfer is ruined - as of now i have to use resmon and look through what's writing to disk2 -> sometimes easy to forget about it when the transfer window closed 20-30minutes
    ago and the file is still in the process of writing to the 2nd disk).
    Any solution would be nice, and a little extra info like whether it can be applied to only 1 hard drive would be excellent.

    Thanks for the reply.
    (Although i have an undergrad degeee in computers, it's been 15years and my vocab is terrible. so, i will try my best. keep an open mind. it's not my occupation, so i rarely have to communicate ideas regarding PCs)
    It operates the same way regardless of the write-cache option being enabled. It's not using the 5gb for read/write buffer - it's merely bloating standby memory during the transfer process at a rate similar to the write speed of destination (for my situation).
    at this point i don't expect a solution. i've tried to look through lists of known memory leaks but i dont have the vocabulary to be 100% certain this problem is not documented. as of now it can't affect many people - NAS's with low bandwidth networks, usb
    attached storage etc. do bugs get forwarded from these forums? below i can outline the consistent and repeatable nature not only on my pc but on others' pcs as well (2012 forum post i found).
    I've been testing and paying a little more attention and i can describe it better:
    Just the Facts
    Resmon Memory Info: "In Use" stays consistent ~1gb (idle amount and roughly the same when nothing else is running during file transfer)
                                     "Modified" contains file transfer
    data (meta data?) which remains consistent at little over 1gb (minor fluctuations due to working as a buffer). After the file transfer window closes "Modified" slowly diminishes as it finishes lazy writing (i believe that's the term). I forget idle
    pc amount, but after transfer this is ony 58mb)
    "Standby" as the transfer starts it immediately rises to ~2gb. I'm sure this initial jump is normal. However, it will bloat well over 5gb over time with a large enough transfer increasing at a consistent rate during the entire transfer
    process. the crux of the matter.
    "Free" will drop as far as 35-50megabytes over time.
    as the transfer starts, the "Standby" increases by an immediate chunk then at a slow rate throughout entire transfer process(~1mb/s). once writing metadata to RAM no longer occurs, the "Modified" ram slowly (@500kb/s matching resmon disk
    activity for that file write) diminishes as it finishes lazy writing, After file is 100% written to destination drive, "Standby" remains a bloated figure long after.
    a 1.4gb transfer filled 3677MB of "Standby" by the time writing finished and modified ram cleared. after 20minutes, it's still bloated at 3696MB. after 30-40mins it's down to 2300mb - this is about what it jumps immediately to when transfer starts
    - it now remains at this level until i reboot.
    I notice the "standby" is available to programs. but they do not operate well. e.g. a 480p trailer on IMDB.com will stop-and-go every 2-3seconds (stream buffers fine/fast) - this would be during the worst case scenario of 35-50mb "Free"
    ram. my pc isn't and never was the latest and greatest, but choppy video never happens even with 1 or 2 resource hogs running (video processing/encoding, games, etc).
    Conjecture Below
    i think it's a problem when one device is significantly slower at writing than the source device - this is the factor that i share with others having this problem. when data is written to modified ram then sent to destination, standby memory is expanded
    until it completely or nearly fills all available RAM - If the transfer size is large enough relative to how slow the write speed of destination device is. otherwise it fills it up as much as the file size/write speed issue allows. the term "memory leak"
    is used below but may not technically be one, but it's an apt description in layman's terms.
    i saw a similar post in these forums (link at end). My problem is repeatable and consistent with others' reports. I wasn't sure if i should revive it with a reply. some of these online message boards (maybe not this one) are extremely picky
    and sensitive, lol.the world will end if an old thread revives - even if for a good reason.
    i can answer some of the ancillary issues. one person (Friday, September 21, 2012 8:33 PM) mentions not being able to shutdown, i asume he means stuck on the shutdown screen - this is because lazy writing has not completed - his nas write speed is significantly
    slower than reading from source - the last bits of data left in ram still needs to be writen to the destination. shutdown will stall for as long as needed until the data finishes writing to destination to prevent data loss.
    another person (Monday, September 24, 2012 6:31 PM) mentions the rate of the leak, but the rate is more likely a function of read speed from source relative to write speed of destination. which explains why my standby expands closer to a 1:1 ratio compared
    to his 1:100 (he said 10mb per 1000mb)
    we all have the same exact results/behaviour, but slightly different rates of bloating/leaking. as the file is written from from the ram to the destination, standby increases during this time - not a problem if read and write speeds are roughly equal (unless
    your transfering a terabytes then i bet the problem could rear its head). when writing lags, it gives the opportunity for standby ram to bloat with no maximum except the amount of installed ram. slower the write speed, the worse the problem.
    The reply on Wednesday, September 26, 2012 3:04 AM has before and after pictures of exactly what i described in
    "Just the Facts". Specifically the resmon image showing the Memory Tab.
    The kb2647452 hotfix seems to do some weird things relative to this problem. in the posts that mention they've applied it: after file completes it looks like the "standby" bloat is now "in use" bloat. as per info from Tuesday, October
    09, 2012 10:36 PM - bobmtl in an earlier post applies the patch. compare images from earlier posts to his post on this date. seems like a worse problem. Also, his process list indicates it's very unlikely they add up to ~4gb as listed in the color coded bar.
    wheres the extra gb's coming from? likely the same culprit of what filled up "standby" memory for me and others. it looks like this patch relative to this problem merely recategorizes the bloat - just changes the title it falls under.
    Link:
    https://social.technet.microsoft.com/Forums/windows/en-US/955b600f-976d-4c09-86dc-2ff19e726baf/memory-leak-in-windows-7-64bit-when-writing-to-a-network-shared-disk?forum=w7itpronetworking

  • HT202213 My wife and I have different iTune accounts.  How do we share purchaed content between our ipads and iphones?

    My wife and I have different iTune accounts.  How do we share purchaed content between our ipads and iphones?

    iTunes- How to share music between different user accounts on a single computer
    You cannot merge two separate libraries across user accounts. Photos does not have the function of merging different Photos.library files. If you have Aperture then you can merge the two before migrating over to Photos.

  • Logic Pro x - additional content downloads and installs but it won't show up in my Logic Pro X. Where is the add'l content downloaded and how do I activate on Logic Pro X?

    The additional content downloads and installs, but it won't show up in my Logic Pro X. I cannot find the "Library" folder where this additional content is  downloaded to and can't seem to activate the new loops and instruments in my Logic Pro X (i.e. loops are still greyed out). Any solutions?

    similar problem that I'm hoping revives this thread. Took over 24hrs to dload additional content (after another full day for the actual problem) due to a bad dload rate. so quitted, and relocated closer to my wifi router. Restart, open logic x, Menu bar:  Logic Pro/ Download Additional content ...Tells me i have no internet connection.... Ahh... I do, I'm using it right now! Tried restarting and relaunching. same thing every time.
    Any clues?
    This whole apple upgrade has been so disappointing! All i wanted to do was reinstall logic 9! $2500 later and I'm still struggling. ***!

  • How can I remove all content between two tags using Find/Replace regular expressions?

    This one is driving me bonkers...  I'm relatively new to regular expressions, but I'm trying to get Dreamweaver to remove all content between two tags in an XML document.  For example, let's say I have the following XML:
    <custom>
    <![CDATA[<p>Some text</p>
    <p>Some more text</p>]]>
    </custom>
    I'd like to do a Find/Replace that produces:
    <custom>
    </custom>
    In essence, I'd like to strip all of the content between two tags.  Ideally, I'd like to know how to strip the CDATA content as well, to return the following:
    <custom>
    <![CDATA[]]>
    </custom>
    I'd much appreciate any suggestions on accomplishing this.
    Many thanks!

    Thanks much for your response.  I found David's article to be a little thin with respect to examples using quantifiers in coordination with the wildcard metacharacters; however, I was able to cobble together a working expression through trial and error using the information he presented.  For posterity, here’s the solution:
    Find:
    <custom>[\d\D]*?</custom>
    Replace:
    <custom>
    <![CDATA[]]>
    </custom>
    I believe this literally translates to:
    [] = find anything in this range/character class
    \d = find any digit character (i.e. any number)
    \D = find any non-digit character (i.e. anything except numbers)
    *? = match zero or more times, but as few times as possible (i.e. match multiple characters per instance, but only match one instance at a time, or none at all)
    I’m still not sure how to effectively utilize the . wildcard.  For example, the following expression will not find content that ends with a number:
    <custom>.*?[\D]*?</ custom >
    I'm presuming this is because numbers aren't included in the \D metacharacter; however, shouldn't numbers be picked up by the .*? expression?

  • How to place content between header and tabs?????

    i have header part which has to be constant through out the portal but below that i have 3 links
    like I AM employee,employer,broker..
    which has to be shown only in home page above tabs..
    how can i achieve this..
    how to place content between header and tabs..:(kindly help..

    Hi Samiran
    Try these approaches and see if that works.
    1. In the Header Section, you header footer shell and add a Header Portlet. This Header Portlet associated JSP file will have all static content in the top section. In the bottom section, add these 3 links say to right hand corner. Show these links only based on some request property like isHome. Now for the main book having Home and other page associate a BackingFile. Within this backing file in the lifecycle methods like preRender or handlePostBack, get instance of BookManager and all the pages and see which page is Active. For that active page check its page definition label which will be always unique. IF the page def label is like home_page_def (this is page def label you give for home page), then set the key value in the request property like isHome=true. By only doubt is after Book backingfile is triggered, the header has to be reloaded, because only then it can pick up the request attributes.
    2. Create a brand new portlet like HomePageLinks portlet. Make its Title Property Not Visible, and other user interface properties like NoBorder, NoTheme etc. The associated JSP will have the 3 links you mentioned right aligned. You can use css styles to make it right etc. Now drop this portlet in the Header Shell area. You already have HeaderPortlet in the top, below that you will have this HomePageLinks portlet. Now associate a backing file for this Portlet to show, only if the Books current active page is Home page by comparing the def label etc as mentioned above.
    In both scenarios, only concern is when we click on different Pages, the entire portal has to be rendered right from the Top Header. Only then the backing file will set the key, and the HomePageLinks portlet can show or hide accordingly.
    Try firing an Event when the Home page is clicked. This listener for this Event can be the HomePageLinks Portlet. I guess Event mechanism should work irrespective of where the portlet is placed. In the event listner, see if you can show/hide this portlet.
    The only challenge is Header section needs to reloaded everytime you click on a Tab.
    Start putting some backing files and System.out.printlns to see if the Header section gets reloaded on click on any Tabs.
    These are just my thoughts over the top of my head. Other forum users can have better alternatives or a different version of above approaches.
    Thanks
    Ravi Jegga

Maybe you are looking for

  • Adobe creative cloud issue to download the apps

    Adobe creative cloud issue to download the apps. Please find attached the error message below: we are faceing issue in woendow 7

  • Dynamic Destination based on data in message using the File adapter

    I am unsure of where to start searching for a clue as to how to impement this. Any comments would be much appreciated. Scenario IDOC   - > XI - > File adapter - > File System (DESADV)                                                        (Variable b

  • ZEN mozaic 8GB forgot the security password

    Hi! I need some help about my zen mozaic. i've been working for so long to solve on how to reset my password on my mozaic. is their any possible way to reset it's or should i trow it away?

  • What is a Material Num, Catalog Num, Part Num and Variant??

    Hi All, Can anyone explain me & gimme the definition of 1. Material Number 2. Catalog Number 3. Part Number 4. Variant What are these & where are they used?? Please explain this with respect to a Configurable materail.. If this is not the right forum

  • Need help for fixing selectonechoice error in ADF !!!

    i have a selectonechoice with three values :A,B,C but i am getting following error on its change event: <SimpleSelectOneRenderer> <_getSelectedIndex> Could not find selected item matching value "B" in RichSelectOneChoice[UIXEditableFacesBeanImpl, id=