Remote formatting not possible "not able to write last block"

I'm installing a new HD on my macpro. but I have to do it remotely since original / previous HD is damaged.
I'm trying to format the disk from my macbook pro in arget mode and disk utility , but formatting failed with the response "impossibile scrivere l'ultimo blocco del dispositivo" (ITALIAN) translated means IMPOSSIBLE TO WRITE THE LAST BLOCK OF THE UNIT"
I cannot find the original install DVD and I need to reinstall from backup of timemachine.
somebody can help me please ?
thank you

I find it hard to believe, next to impossible that anyone would lack bootable clone backups for a workstation. As for "original" DVD, maybe you need $30 DVD SL or contact Apple to buy replacement set.
Then play around, practice, and start using clones. CCC, SuperDuper and others, and dont' rely just on TimeMachine. At least Lion provides an emergency boot environment to handle maintenance, but MicroMat had their own edrive feature for years.
Sounds like you dont' have a new hard drive, get one, and forget using the one that you feel is damaged, maybe zero the entire drive but an erase will now zero and test the first and last 100,000 or more sectors as req'd by GUID.

Similar Messages

  • Not able to write to file

    Hi all,
    I need to upload a file from a J2ME device to a remote server using a servlet
    I am uploading an image ..and in the servlet i get the size of the file but i am not able to write to that file...please see code below...any help would be great.
    Thanks in advance
    StringBuffer bufferBody=new StringBuffer();
              String line="";
              byte[] data = new byte[79872000];
              int cnt=0;
              try
                   BufferedReader body=request.getReader();
                   while ((line = body.readLine()) != null) {
                        bufferBody.append(line);
                        cnt++;
              data = bufferBody.toString().getBytes();
              System.out.println("data received:"+data+"data length:"+data.length+"lines"+cnt);
              String newFileName = "/home/aztec/pic2.jpg";
              //data="hi".getBytes();
              FileOutputStream imageOutput = new FileOutputStream(new File(newFileName));
              imageOutput.write(data, 0, data.length);
              imageOutput.close();
              System.out.println("Please find image in " + newFileName);
              } catch(Exception ex) {
              System.out.println("Exception: " + ex);
              ex.printStackTrace();
              }

    And don't read entire files into memory, especially in a memory-constrained J2ME device. Read and write a 4k chunk at a time.

  • Data Pump Abends : Not able to write to trails to remote directory

    I am using following to do replication
    SOURCE SCHEMA: HBP
    TABLE: EMPLOYEES
    SOURCE GOLDEN GATE SCHEMA: ggs_owner
    Z:\ is mapped on source system which points to \\206.120.226.47\ggtarget ( Remote System )
    TARGET SCHEMA: HBP
    TABLE: EMPLOYEES
    TARGET GOLDEN GATE SCHEMA: ggs_target
    ON SOURCE:
    1. ADD EXTRACT ext2, TRANLOG, BEGIN NOW
    2. ADD EXTTRAIL D:\GGATE\dirdat\lt, EXTRACT ext2
    3. ADD EXTRACT dtest, EXTTRAILSOURCE D:\GGATE\dirdat\lt
    4. EDIT PARAMS ext2
         EXTRACT ext2
         USERID ggs_owner, PASSWORD ggs_owner
         EXTTRAIL D:\GGATE\dirdat\lt
         TABLE HBP.EMPLOYEES;
    5. ADD RMTTRAIL Z:\dirdat\rt, EXTRACT dtest
    6. EDIT PARAMS dtest
         EXTRACT dtest
         USERID ggs_target, PASSWORD target
         RMTHOST 206.120.226.47, MGRPORT 7809
         RMTTRAIL Z:\dirdat\rt
         PASSTHRU
         TABLE HBP.EMPLOYEES;
         Note: Full rights are given on Z:\dirdat
    7. START EXTRACT ext2
    Successfully Started
    8. START EXTRACT dtest
    Error: There is a problem in network communication, a remote file problem, encryption keys for target and source do not match (if using ENCRYPT) or an unknown error. (Remote file used is Z:\dirdat\rt000000, reply received is Could not create Z:\dirdat\rt000000). 2011-03-16 18:02:51 ERROR OGG-01668 Oracle GoldenGate Capture for Oracle, DTEST.prm: PROCESS ABENDING.

    The OS user running Manager Service on source system is : zzxpzr whereas the target system has Golden Gate configured under OS user: jzdlc1.
    From source system, I am able to create a text file to the remote mapped drive. Not able to understand why Golden Gate is not able to create file remotely.
    (1) Is Mapped Dirve concept permitted in Golden Gate ?
    (2) Instead of Mapped Drive, if I use \\201.120.220.56\GGTARGET\dirdat\rt while added REMOTE TRAIL using command ADD RMTTRAIL then it gives error that "filename is incorrect"
    Thanks Steve for your suggestion. I shall try to configure Golden Gate with same OS user as on Source System.

  • Remote Object - not able to get the returned value from java method

         Hi ,
    I am developing one sample flex aplication that connects to the java code and displays the returned value from the
    java method in flex client. Here I am able to invoke the java method but not able to collect the returned value.
    lastResult is giving null .  I am able to see the sysout messages in server console.
    I am using flex 3.2 and blazeds server  and java 1.5
    Here is the code what I have written.
    <?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication  xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#FFFFFF" initialize="initApp()">
     <mx:Script><![CDATA[
    import mx.controls.Alert; 
    import mx.binding.utils.ChangeWatcher; 
    import mx.rpc.events.ResultEvent; 
    import mx.messaging.*; 
    import mx.messaging.channels.* 
    public function initApp():void { 
         var cs:ChannelSet = new ChannelSet(); 
         var customChannel:Channel = new AMFChannel("my-amf", "http://localhost:8400/blazeds/messagebroker/amf");     cs.addChannel(customChannel);
         remoteObj.channelSet = cs;
    public function writeToConsole():void {      remoteObj.writeToConsole(
    "hello from Flash client");
          var returnedVal:String = remoteObj.setName().lastResult;     Alert.show(returnedVal);
    //[Bindable] 
    // private var returnedVal:String; 
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteObj" destination="sro" /> 
    <mx:Form width="437" height="281">
     <mx:FormItem>  
    </mx:FormItem>  
    <mx:Button label="Write To Server Console" click="writeToConsole()"/>
     </mx:Form>
     </mx:WindowedApplication>
    Java code
    public  
         public SimpleRemoteObject(){  
              super();     }
      class SimpleRemoteObject { 
         public void writeToConsole(String msg) {          System.out.println("SimpleRemoteObject.write: " + msg);     }
         public String setName(){          System.
    out.println("Name changed in Java"); 
              return "Name changed in Java";
    And I have configured destination in  remote-config.xml
    <destination id="sro">
       <properties>    
        <source>SimpleRemoteObject</source>
        <scope>application</scope>
       </properties>
      </destination>
    Please help me .

    You are not able to get the returned value because if you see the Remote object help you will realise you have to use result="resultfn()" and fault = "faultfn()"
    In this you define what you wish to do.
    More importantly in the remote object you need to define which method you wish to call using the method class like this
    <mx:RemoteObject id="remoteObj" destination="sro" result="r1" fault="f1"  >
         <Method name="javaMethodName" result="r2" fault="f2"/>
    <mx:RemoteObject>
    r2 is the function where you get the result back from java and can use it to send the alert.

  • Not able to write on an external hard drive

    I recently bought a external hard drive (Seagate) and formated that to NTFS. I used this to store files from my PC. Recently I bought my iMac, and when I connect the hard drive, it recognized it, but I am not able to transfer files from my iMac to the hard drive. Any suggestions on how I can achieve this?
    Thanks

    Mac can't write to NTFS formatted drives.
    If the drive is plugged into a Windows PC, you could write to it via file-sharing with Windows, however.

  • Not able to write data in ADS on 636 port

    Hi-
      A real problem. I have configured my  NWO4S UME to access LDAP using SSL, i have performed the following steps:
    1)Generated a certificate for my LDAP with the FQDN e.g
       xyz.testdomain.com
    2)published the certifcate on the domain controller, i hope my AD will pick-up the certificate from here.
    3)used the ldp tool and it connected on the 636 port. Alos, using ldifde command i was able to import the users into LDAP from 636 port.
    4)Now the SAP doc says, just import the root certficate of the ADS into the trusedstore of the UME. I had a probelm here, my certficate was in .cer format, but engine was accepting the cerificate into .crt or .cert format. So changed the format by using "copy to file" and then changed the format and imported into mu ume.
    5)restared the engine, but i am not able to view the contents of the LDAP eventhough the engine comes up. To add to this, on 389 port it works. I am really wondering whats wrong.
    I have specified the server name, port,  admin user, password, vendor and enable ssl paramaters in the configtool
    On 636 port, when i try to "create user" i get some LDAP_53 error. I says some persistence problem. Please let me know what i need to do.
    Your knowledge will be gr8ly appreciated.
    Regards
    Subramanya
    Edited by: Subramanya Mudrabetta on Apr 2, 2008 10:44 AM

    gurpreetbhalla wrote:
    Thanks for the help.
    I have one doubt
    I am already waiting 30 seconds , can the peer application be so slow. ???It's either slow, or there is a bug on the client side.
    Btw. Why wait 30 seconds? Don't you want optimal performance?
    Kaj

  • Problem with wlan sticks module, not able to write to disk any more

    Hello everybody,
    when I booted my PC today, a strange and some sort of severe problem occurred concerning my wlan stick(s) that I think, I'm not able to solve without your help. I searched for a solution but it didn't seem that somebody else has had a similar problem before.
    Here is the description:
    I have two wlan sticks (but I do not use both of them nor are they both plugged in at the same time), and both happen to malfunction since today. My "main" stick (used most of the time) is a BigTec Wireless 11N Adapter with a Realtek chipset. My second one (only used to solve problems with the other stick) is a Fritz! WLAN USB Stick (to be used with ndiswrapper).
    After bootup, which makes no problems at all, my "main" wlan stick is not able to connect to the network. When I run wicd-curses (I use wicd as network manager), the virtual terminal freezes (when I use urxvt under openbox to run wicd-curses, only the window freezes). After one minute, a message appears that says something about a dbus problem but I am not able to read it because of the screen clears. Then I'm able to use the terminal again, but (and this is the very, very strange about this) when I run any program that tries to write on my disk it stucks, so I can't cancel it with ctrl-c nor can I kill the process. Wicd-curses, ifconfig or iwconfig also crash after entering the command and show the same behavior. At this point, my wlan stick does not show any sign of being plugged in (normally it blinks...).
    My second stick makes the computer crash: After a few moments a stacktrace is shown (like when a kernel panic occurs), saying something about "stack being overrun". But I can't find the message in the log files so it is difficult to post it.
    When I tried to figure out a solution, I saw in pacman.log, that yesterday udev and hwdetect were updated... But also downgrading all the packages that were updated yesterday did not solve the problem!
    I'll post now the last lines of a few logs here (but nothing concerning the ndiswrapper stick, else it would be too disturbing), I hope they help you at helping me!
    everything.log
    Jan 23 15:25:26 localhost dhcpcd[835]: dhcpcd not running
    Jan 23 15:25:27 localhost kernel: [ 21.415035] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin"
    Jan 23 15:25:27 localhost kernel: [ 22.063785] r8712u: 1 RCR=0x153f00e
    Jan 23 15:25:27 localhost kernel: [ 22.064534] r8712u: 2 RCR=0x553f00e
    Jan 23 15:25:27 localhost kernel: [ 22.170765] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Jan 23 15:25:27 localhost dhcpcd[847]: dhcpcd not running
    Jan 23 15:25:28 localhost kernel: [ 22.410354] e1000e 0000:00:19.0: irq 41 for MSI/MSI-X
    Jan 23 15:25:28 localhost kernel: [ 22.463386] e1000e 0000:00:19.0: irq 41 for MSI/MSI-X
    Jan 23 15:25:28 localhost kernel: [ 22.463902] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Jan 23 15:25:28 localhost dhcpcd[854]: dhcpcd not running
    Jan 23 15:25:28 localhost kernel: [ 22.735037] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin"
    Jan 23 15:25:29 localhost kernel: [ 23.383789] r8712u: 1 RCR=0x153f00e
    Jan 23 15:25:29 localhost kernel: [ 23.384535] r8712u: 2 RCR=0x553f00e
    Jan 23 15:25:29 localhost kernel: [ 23.490763] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Jan 23 15:26:11 localhost dhcpcd[1382]: dhcpcd not running
    Jan 23 15:26:12 localhost kernel: [ 66.495307] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin" # then I hard reset because of the freeze
    errors.log
    Jan 23 15:00:01 localhost /USR/SBIN/CROND[5597]: (CRON) EXEC FAILED (/usr/sbin/sendmail): No such file or directory
    Jan 23 15:20:01 localhost /USR/SBIN/CROND[6215]: (CRON) EXEC FAILED (/usr/sbin/sendmail): No such file or directory
    Jan 23 15:25:26 localhost dhcpcd[835]: dhcpcd not running
    Jan 23 15:25:27 localhost dhcpcd[847]: dhcpcd not running
    Jan 23 15:25:28 localhost dhcpcd[854]: dhcpcd not running
    Jan 23 15:26:11 localhost dhcpcd[1382]: dhcpcd not running # then I hard reset because of the freeze
    daemon.log
    Jan 23 15:25:15 localhost [ 0.864888] udevd[48]: starting version 175
    Jan 23 15:25:15 localhost [ 4.116488] udevd[235]: starting version 178
    Jan 23 15:25:26 localhost dhcpcd[835]: dhcpcd not running
    Jan 23 15:25:27 localhost dhcpcd[847]: dhcpcd not running
    Jan 23 15:25:28 localhost dhcpcd[854]: dhcpcd not running
    Jan 23 15:26:11 localhost dhcpcd[1382]: dhcpcd not running # then I hard reset because of the freeze
    I hope you can help me and thank you for trying
    hoeffl
    P.S.: Excuse all the mistakes I made because of being new here, please!

    This seems to be a problem with r8712u on all 3.2.x and 3.3-rc kernels on all distros.  I've had it for weeks on Gentoo, Arch, and several other distros.
    If you are running a 3.2.x kernel, this is almost definitely the problem.  All 3.1 kernels don't do this.
    I posted a temporary work-around on the Arch bugzilla, and Larry Finger (kernel dev with wireless) is currently working on it (a patch).   
    In the meantime, If you compile your own kernels, you can get 3.2.x's to work normally- see my comment here for more details.   https://bugs.archlinux.org/task/27996
    Top of page doesn't say r8712u, but it's the same problem, and after the first 2-3 comments it deals with r8712u specifically.
    There is also info on the Gentoo forum 3.2 kernel quirks thread, towards the bottom of Page 1:  http://forums.gentoo.org/viewtopic-t-901702.html
    Last edited by wrc1944 (2012-02-03 07:45:32)

  • Remote User not able to Connect Completely

    Hi,
    not able to connect a remote user to our network. All other remote users are able to connect so I know the tunnel is up. When this user tries to connect using the cisco vpn client, I see their traffic coming through with the sh crytpo ipsec sa peer peer address. I can see their peer address and I can see their dhcp local allocated address - allocated from the firewall, and I can ping their peer address but I can't ping the dhcp allocated address.
    Any ideas?
    Thanks, Pat.

    Email from user stating screen message:
    tried to sign in again - VPN Client connects fine, but Fusion states "not connected to the network", even though VPN connected
    Crypto map tag: OUTSIDE_dyn_map, seq num: 40, local addr: XX.XX.XX.XX
          local ident (addr/mask/prot/port): (0.0.0.0/0.0.0.0/0/0)
          remote ident (addr/mask/prot/port): (10.10.XX.XX/255.255.255.255/0/0)
          current_peer: 74.47.XX.XX, username: XXXXXXX
          dynamic allocated peer ip: 10.10.XX.XX
          #pkts encaps: 548, #pkts encrypt: 548, #pkts digest: 548
          #pkts decaps: 624, #pkts decrypt: 624, #pkts verify: 624
          #pkts compressed: 0, #pkts decompressed: 0
          #pkts not compressed: 548, #pkts comp failed: 0, #pkts decomp failed: 0
          #pre-frag successes: 0, #pre-frag failures: 0, #fragments created: 0
          #PMTUs sent: 0, #PMTUs rcvd: 0, #decapsulated frgs needing reassembly: 0
          #pkts no sa (send): 0, #pkts invalid sa (rcv): 0
          #pkts encaps failed (send): 0, #pkts decaps failed (rcv): 0
          #pkts invalid prot (rcv): 0, #pkts verify failed: 0
          #pkts invalid identity (rcv): 0, #pkts invalid len (rcv): 0
          #pkts invalid pad (rcv): 0,
          #pkts invalid ip version (rcv): 0,
          #pkts replay rollover (send): 0, #pkts replay rollover (rcv): 0
          #pkts replay failed (rcv): 0
          #pkts min mtu frag failed (send): 0, #pkts bad frag offset (rcv): 0
          #pkts internal err (send): 0, #pkts internal err (rcv): 0
          local crypto endpt.: XX.XX.XX.XX, remote crypto endpt.: 74.47.XX.XX
          path mtu 1500, ipsec overhead 58, media mtu 1500
          current outbound spi: F9F18F20
          current inbound spi : B27E9C25
        inbound esp sas:
          spi: 0xB27E9C25 (2994641957)
             transform: esp-3des esp-sha-hmac no compression
             in use settings ={RA, Tunnel, }
             slot: 0, conn_id: 166191104, crypto-map: OUTSIDE_dyn_map
             sa timing: remaining key lifetime (sec): 2902
             IV size: 8 bytes
             replay detection support: Y
             Anti replay bitmap:
              0x1FFFFFFF 0xFFFFFFFD
        outbound esp sas:
          spi: 0xF9F18F20 (4193357600)
             transform: esp-3des esp-sha-hmac no compression
             in use settings ={RA, Tunnel, }
             slot: 0, conn_id: 166191104, crypto-map: OUTSIDE_dyn_map
             sa timing: remaining key lifetime (sec): 2902
             IV size: 8 bytes
             replay detection support: Y
             Anti replay bitmap:
              0x00000000 0x00000001
    Thanks, Pat.

  • After upgradingin iPhone 4 to iOS 7 the response time of the keyboard is dead slow (basically not able to write) and overall performance is a real challenge. Any ideas?

    After upgrade to IOS 7, the iPhone of my wife is dead slow. It takes at least 10 seconds that the virtual keyboard responds and even the passlock reaction to the inputs is very much delayed. Like this she is not able to do write any messages or emails.
    Any ideas what can help?

    Thank you!! I was getting very worried about upgrading.

  • Not able to write to Excel using Client_OLE2 and webutil

    Hi
    I am working on Windows 2000 Pro SP4 Oracle Forms Builder 10.1.2.0.2
    I am using webutil to invoke Excel Application .
    The following code invokes Excel application and saves in the path specified as Test_Excel and writes the "Test Data to be written" to R1C1 when I use OLE2.
    But when I replace OLE2 with Client_OLE2 the Excel file is getting created but the data is not written to the cell.
    PL/SQL :could not find program unit being called is the error.
    Can anybody help me solve this issue ?
    Thanks in advance.
    FUNCTION WRITE_TO_EXCEL(
    excel_file_name in varchar2, ---for eg.. C:\Test_Excel.xls
    buf in varchar2 ) ----Test Data to be written
    return boolean is
    application CLIENT_OLE2.OBJ_TYPE;
    workbooks CLIENT_OLE2.OBJ_TYPE;
    workbook CLIENT_OLE2.OBJ_TYPE;
    worksheets CLIENT_OLE2.OBJ_TYPE;
    worksheet CLIENT_OLE2.OBJ_TYPE;
    cell CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    begin
    application := CLIENT_OLE2.CREATE_OBJ ('Excel.Application');
    CLIENT_OLE2.SET_PROPERTY(application, 'Visible', 'True');
    workbooks := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    workbook := CLIENT_OLE2.Invoke_Obj(workbooks, 'Add');
    worksheets := CLIENT_OLE2.Get_Obj_Property(workbook, 'Worksheets');
    worksheet := CLIENT_OLE2.Invoke_Obj(worksheets,'Add');
    args:=CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,1);
    CLIENT_OLE2.add_arg(args,1);
    cell:=CLIENT_OLE2.get_obj_property(worksheet, 'Cells', args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value', buf);
    CLIENT_OLE2.release_obj(cell);
    CLIENT_OLE2.Release_Obj(worksheet);
    CLIENT_OLE2.Release_Obj(worksheets);
    args := CLIENT_OLE2.Create_Arglist;
    CLIENT_OLE2.Add_Arg(args,excel_file_name);
    CLIENT_OLE2.Invoke(workbook, 'SaveAs', args);
    CLIENT_OLE2.Destroy_Arglist(args);
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args,'Caption');
    CLIENT_OLE2.INVOKE(application,'Run',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.Release_Obj(workbook);
    CLIENT_OLE2.Release_Obj(workbooks);
    CLIENT_OLE2.Invoke(application, 'Quit');
    CLIENT_OLE2.Release_Obj(application);
    return(TRUE);
    exception
    when others then
    message (error_type||'-'||error_code||':'||error_text);
    message (' ');
    SET_APPLICATION_PROPERTY(CURSOR_STYLE,'default');
    CLIENT_OLE2.RELEASE_OBJ(application);
    CLIENT_OLE2.RELEASE_OBJ(workbooks);
    CLIENT_OLE2.RELEASE_OBJ(workbook);
    CLIENT_OLE2.release_obj(worksheet);
    CLIENT_OLE2.release_obj(worksheets);
    return(FALSE);
    END;

    What line is actually causing the error? Also, I assume you tested the exact same code which works when using straight OLE2 (and not the webutil client_ version)?
    Regards
    Grant Ronald
    Oracle Product Management

  • Page format not able to set  in spool - Using - GET_PRINT_PARAMETERS

    Hi Friends,
    I am calling transaction using BDC.
    Before that I have  called function  GET_PRINT_PARAMETERS
    to set the layout . And used the command
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          copies         = 1
          cover_page     = '2'
          destination    =  g_spld
          layout         = 'X_65_200'
          line_count     = 65
          line_size      = 200
          mode          = 'BATCH'
          new_list_id    = 'X'
          no_dialog      = ' '
          release        = ' '
          sap_cover_page = 'X'
        IMPORTING
          out_parameters = print_parameters
          valid          = valid_flag.
    For creating the new page
         NEW-PAGE
                   PRINT ON
                     PARAMETERS print_parameters  NO DIALOG.       
    Now at this point i have called the BDC. Here I am able to create spool id. But the strange thing is  spool is not using the layout  'X_65_200' .But using the default layout as 'X_65_80'.
    Can you help me out to solve this problem. Or any other way to  overcome this.
    Thanks..

    Hi Jishi,
    just one question why are you trying to set exchange profile on r3 system?
    "The exchange profile is an XML document that is stored in the main database of the SAP Exchange Infrastructure"
    from:
    http://help.sap.com/saphelp_nw04/helpdata/en/89/6f1741b393f26fe10000000a1550b0/content.htm
    you do not set it in R/3 systems...
    Unless I'm wrong...
    Regards,
    michal

  • APEX BIP report query output format - not able to set with a variable

    I have a Named Columns (RTF) report that is working great, but I can't control the output format with a variable. I can set the "Output Format" in the Report Query Attributes, but it doesn't work when I set the report output format to "Derive from item". No matter what the item contains, I always get PDF output. I can see the variable in my session, but it doesn't control the output format. I have tried using the values "xml", "XML", "rtf", and "RTF".
    Any help would be appreciated...

    My guess is that an exception is being thrown for some rows. Since you've stubbed out your catch phrase to do nothing you're not going to have any visibility into what exception was thrown. You need to put some kind of logging in the catch phrase to see
    what is happening.

  • Remote Disc not able to Install Aperture 2

    How can I install Aperture 2 on my MacBook Air? I receive an error message saying that installation can not occur over a network connection. I understood that using Remote Disc with the MacBook Air (without a DVD/CD drive) would take care of this.
    Message was edited by: JeffKurtzman

    I installed Aperture 2 on my MacBook Air a few days ago (boxed UK educational package). I had no problem using Remote Disc. Making a disc image from the DVD and installing from the image also works.

  • 1099 misc file format not able to get for multiple WHT code??

    Dear Experts,
    I am trying to download the file format for 1099 misc IRS reporting for e-filling, i am getting the file for one WHT code 07. but when i am executing this transaction S_P00_07000134 for multiple WHT Code 01 to 14, in the file format, Amount entries are available for all the WHT Code but In the Record "A" only Account code "C" is coming. i have implemented the SAP Note 1666672 version 3 before executing this transaction. Please let me know this is a configuration issue or i am missing to apply other SAP Note. this is very high priority issue now.
    Any comments on this are highly appreciated.
    Thanks in Advance
    Saurabh Saxena

    I am seeing the same issue. This worked for us last year. But this year the A Record indicates that we only have Withholding code 7, yet our detail records have withholding amounts in columns 1, 6, and 7.
    IRS rules state that multiple withholding codes should be concatenated in ascending order in the Header 'A'Record. This must be an issue with the 2011 DMEE file, IDWTFILE_US_1099.xml as this is the only thing that changed in the 2011 note.
    Actually, I've just compared last year's IDWTFILE_US_1099.xml file with this year's, and in the part of the transformation where the withholding amount codes are concatenated, it appears a bug was introduced. I'm going to hand-edit my copy of the file to see if it resolves the issue, and I'll cross my fingers that SAP produces a 4th update to note 1666672
    Edited by: Timothy Conama on Jan 19, 2012 1:45 AM

  • Not able to write file on my external hard drive attached to router

    I have Mac Book Pro with most updated OS.  I have Belkin Router Monitor with most updated firmware.  I have external hard drive with MS DOT (FAT) format. 
    I would like to use my router for home network so I have attached external hard drive to my belkin router to share data with my Macbook and my TV.  I noticed that I could detect my external drive in my mac book and my  TV (I could open the files from my external hard drive and view it in my mac book and TV).  However, when I try to copy data from my mc book to my external drive (which is connect with the router) it shows me the message ‘Items can’t be copied to XX (my hard drive name) because you don’t have permission to read them’.  I have also seen the permission request by attaching external hard drive with my Mac.  It shows me that I have read and write permission.
    I am looking forward for some solution so I can copy data from mac book to my external hard drive when it is attached with my router.
    Please help me.

    You probably have to format the drive for Mac. If you don't have write permissions sounds like its formatted in the Windows NTSC category.

Maybe you are looking for

  • ORA-02097 when set parameter REMOTE_LISTENER

    We have a 3 node RAC of 11.2 on Redhat Linux 2.5. We installed the grid infrastructure and has the 3 listeners start in grid_home with identical listener.ora like LISTENER=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER))))           

  • Oracle 10.2.0.4 (64 bit) for IA64 (Itanium) Windows Availability?

    Does anyone know when 10.2.0.4 will be available for Itanium Windows based systems?  It has been available for every other platform for quite a while now. thanks, Ethan Hill

  • "Missing Class" error when running web service

    Hi, I am getting an "Missing Class" error when running a web service. The web service was generated from a Java class via the "create J2EE web service" option. The web service has a JAX-RPC handler class added, which belongs to the same package as a

  • Does Apple Read These Posts

    Transitioning from G4 Panther to G5 Tiger with many issues. Icons, preferences lost. NON-Apple Programs crash. Printer problems. Who needs this? Is anyone important listening to these complaints. I am an original Apple owner from AppleIIE and finally

  • Product Costing - Planning & Actuals

    Hi All I'm new to Product Costing. I dnt have much of functional knowledge aswell. I want to how the Planning Values & the actuals values are calculated in SAP thru PC. May be if you can explain me with an example, it wld be of grt help to me. I want