Problem with reading file extensions from a Fat 32 Drive

I have been copying image files from my imac 24" OSX 10.6.8 to a Maxxtor One touch external USB drive, the drive is FAT 32 format for a PC. My wife then connects the same drive to her laptop which is running Windows 7. She then sorts the images into different folder gives me back the drive to have more loaded to sort. The problem is when I get the drive back all the image files have a funny little box behind the file extension and the preview icon is blank with a exe in green, the file info says it's a Unix extension.
I tried to remove the little box and open the .tif file or .jpg files and all I get is a image is not readable. The same drive can be mounted back to my wife's laptop and the images open up just fine in Windows media viewer.
What's going on here and how do I fix and prevent this from happening again?
Thanks!
Pat

So No one has any ideas on how this is happening and how to go about repairing the problem.
The trouble as I see it comes up once she moves the files into another folder on Maxxtor drive when it's hooked up to the Win 7 laptoop. The Data then is unuseable on my Mac from that point on.
I need to know WHY so I can aviod this from happening again, and how to fix currently there is 250 GB of image files I can not access on my Mac and I still have about 2 TB of image files to go through, and THEY ALL NEED TO BE ACCESSABLE.
Anybody?

Similar Messages

  • Problem with reading files from folders - please help

    Hi!
    I have 2 folders (folder1 and folder2) on 2 different locations. Now i will say few things about my program.
    First folder is input folder. Different applications generate XML files and put them inside folder1.
    Then i have my application which i use to manipulate with those folders. Basically, i have 2 threads. One is checking if there are files in folder1 and other thread is moving manipulated files from folder1 to folder2.
    I face this problem. XML files are much faster generated then manipulated. Example: for every 3 incoming files into folder1 i have 1 manipulated and stored file into folder2. This way i face problem that some older files are never manipulated, they are stuck in folder1 basically forever.
    Could someone help me to solve this problem? I do not know how to select files form folder1 ordered by "date modified time".
    Tnx for your time and help!

    Do not crosspost! I'll lock this thread.

  • Problem with reading special char from file

    Hello Oracle community,
    Got a problem when reading from a file. I am using a croatian keyboard and trying to read special charachters (ČĆŽŠĐ) from a file.
    declare
      l_file utl_file.file_type;
      s varchar2(200);
    begin
      l_file := utl_file.fopen('test_dir', 'test.txt', 'R');
      loop
        utl_file.get_line(l_file, s);
        dbms_output.put_line(s);
      end loop;
    exception
      when no_data_found then
        utl_file.fclose(l_file);
    end;But I keep getting this in dbms_output: ČƎŠĐ. For some reason it keeps skipping 2 chars Š and Ž. If I try to insert or update data the values are show correctly. What could be the cause of such a problem?
    Best regards,
    Igor

    Hi Igor,
    Looks like a NLS_LANGUAGE issue. Check the following threads:
    UTL_FILE and NLS_LANG setting
    Re: Arabic characters not displaying in Forms
    Regards,
    Sujoy

  • Problem with Reader file when we try to save a pdf version of filled in file.

    We currently create fillable forms in Acrobat XI and enable them for fill-in with Acrobat Reader.  Our end users are able to key information and save it to the enabled pdf file with Reader, but they want to create a protected version of the form so nothing can be modified once they have approved it.  They have been creating "locked" pdf versions of the completed form using CutePdf software.  The PDF files they are creating open fine with Acrobat Pro XI or our free FoxIT reader, but when we try to open the files they created with CutePDF with Acrobat Reader, they are quite distorted.  According to users, this worked with older versions of Acrobat Reader.  Please let us know if you have any suggestions (other than switching from Acrobat Reader to the free FoxIT reader.
    Thanks for the help!!
    Ken K. - 2191

    Can't endorse FoxIt or CutePDF, since I don't use either of them, and Adobe doesn't like us endorsing thrid party products in their forums anyway. On top of that I know several people who had really bad adware experiences with FoxIt, so I'd say stay away from it.
    Most likely neither of these software developers has updated THIER software to work with Acrobat/Reader XI and the problem lies with them, since PDF is an Adobe format and they must follow the lead from here, not vice-versa.

  • Problems with specifying File Extension of E-Mail attachment

    Hi everybody
    I have a problem that seems to be so simple that it almost drives me crazy that I cannot find a solution for it.
    I need to send the content of an internal table (some lines) as a mail attachment to a specified mail address.
    The format should be normal ASCII, so when I open it with any text editor (e.g. Notepad),  I want to have all my lines there (including CR/LF).
    The problem now is - The extension of this mail attachment must be ".key", so the attached file should have the name "L_12345.key" (for example).
    For E-Mailing I use FM "SO_NEW_DOCUMENT_ATT_SEND_API1".
    This part works fine, also the attachment part works in general.  (I receive the mail and I receive the attachment).
    BUT I get either an attachment with the name "L_12345.txt" or "L_12345.key.txt" and in correct format, or I get an attachment "L_12345.key", where the name is correct but format is wrong (no CR/LF - everything in one line).
    Example:
    =======
    Attachment-Content should be:
    Line 1
    Line 2
    Line 3
    Name of Attachment should be: L_12345.key
    What I tried:
    TEST 1 **
    Declare Attachment in Packing list. ..
      ls_packing_list-transf_bin   = ' '.
      ls_packing_list-head_start   = 1.
      ls_packing_list-head_num     = 0.
      ls_packing_list-body_start   = 7.  "Startline of Attachment
      ls_packing_list-body_num     = 3.  "No of Attachment lines
      ls_packing_list-doc_type     = 'RAW'. 
      ls_packing_list-doc_size     = 3 * 255.
      ls_packing_list-obj_name     = 'ATT01'.
      ls_packing_list-obj_descr    = 'L_12345'   "Attachment name
      APPEND ls_packing_list TO lt_packing_list.
    ==> Result: Attachment Filename = L_12345.txt
    ==> File as I need it (ASCII with CR/LF), but extension wrong
        Line 1
        Line 2
        Line 3
    TEST 2 **
    Same as TEST 1, but with:
      ls_packing_list-obj_descr    = 'L_12345.KEY'   "Attachment name
    ==> Result: Attachment Filename = L_12345.KEY.txt
    ==> File as I need it (ASCII with CR/LF), but extension wrong
        Line 1
        Line 2
        Line 3
    TEST 3 **
    Declare Attachment in Packing list. ..
      ls_packing_list-transf_bin   = ' '.
      ls_packing_list-head_start   = 1.
      ls_packing_list-head_num     = 0.
      ls_packing_list-body_start   = 7.  "Startline of Attachment
      ls_packing_list-body_num     = 3.  "No of Attachment lines
      ls_packing_list-doc_type     = 'KEY'.
      ls_packing_list-doc_size     = 3 * 255.
      ls_packing_list-obj_name     = 'ATT01'.
      ls_packing_list-obj_descr    = 'L_12345'. "Attachment name
      APPEND ls_packing_list TO lt_packing_list.
    ==> Result: Attachment Filename = L_12345.KEY
    ==> File Format is wrong:
        Line 1          Line 2     Line3
    I have tried several other Extensions (DOC_TYPE), it seems, that the File format is only correct with "RAW", but it seems with "RAW" SAP adds ".txt" as extension to the filename.
    Does anyone know how I can achieve having an e-mail attachment with multiple text lines and name "<anyname>.key"
    Any help (if possible with example code ?) would be highly appreciated.
    Many thanks
    Harald

    hi,
    check the following code.
    *&      Form  send_email
    FORM send_email.
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    CONSTANTS: con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    *Body of mail
      CLEAR objtxt.
      CLEAR objtxt[].
      objtxt = 'Dear abc'.
      APPEND objtxt.
      CLEAR objtxt.
      APPEND objtxt.
      objtxt = 'Attached herewith is the detail list of materials.'.
      APPEND objtxt.
      CLEAR objtxt.
      APPEND objtxt.
      objtxt = 'Regards,'.
      APPEND objtxt.
      objtxt = 'Admin'.
      APPEND objtxt.
      DESCRIBE TABLE objtxt LINES tab_lines.
      READ TABLE objtxt INDEX tab_lines.
    *Mail description
      CLEAR docdata.
      docdata-doc_size  = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
      docdata-obj_name  = 'List'.
      docdata-obj_descr = 'List of materials'.
      docdata-obj_langu = sy-langu.
    *Packing list for main document
      CLEAR objpack.
      CLEAR objpack[].
      objpack-head_start = 1.
      objpack-head_num   = 0.
      objpack-body_start = 1.
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'RAW'.
      APPEND objpack.
    *Attachment data
      CLEAR objbin.
      CLEAR objbin[].
      CONCATENATE
            'field1' 'field2' 'field3' 'field4'
        INTO objbin SEPARATED BY ','.
      CONCATENATE con_cret objbin INTO objbin.
      APPEND objbin.
      LOOP AT it_material_list INTO wa_material_list.
        MOVE-CORRESPONDING wa_material_list TO wa_char_material_list.
        CONCATENATE
              wa_char_material_list-field1
              wa_char_material_list-field2
              wa_char_material_list-field3
              wa_char_material_list-field4
          INTO objbin SEPARATED BY con_tab.
        CONCATENATE con_cret objbin INTO objbin.
        APPEND objbin.
        CLEAR objbin.
        CLEAR wa_char_employee_list.
      ENDLOOP.
      DESCRIBE TABLE objbin LINES tab_lines.
      READ TABLE objbin INDEX tab_lines.
    *Packing list for attachment document
      CLEAR objpack.
      objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
      objpack-transf_bin = 'X'.          "check these values
      objpack-head_start = 1.          "check these values
      objpack-head_num   = 1.          "check these values
      objpack-body_start = 1.          "check these values
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'KEY'.
      objpack-obj_name   = 'Attachment'.
      objpack-obj_descr  = 'Report.KEY'.
      APPEND objpack.
    *Email receiver's list
      CLEAR reclist.
      CLEAR reclist[].
      reclist-receiver = mail_id.
      reclist-rec_type = 'U'.
      APPEND reclist.
    *Function module to send email with an attachment
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = docdata
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = objpack
          contents_bin               = objbin
          contents_txt               = objtxt
          receivers                  = reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "send_email
    Edited by: vikram shah on Sep 25, 2008 5:28 PM

  • Problem with AI File extension association

    I have Adobe CS4 and for some reason, my computer doesn't recognize  Adobe Illustrator as the default program for .ai files. Instead, it  lists AIRegedit.exe.
    When I open up the Properties, it displays in the type of file field  "example.ai" as an .ai file instead of the normal Adobe Illustrator  Document.
    When I open up "Associate a file type or protocol with a specific  program" .ai files are listed as "AI File" instead of "Adobe Illustrator  Document."
    Usually the icon for an Illustrator document is an orange square with  inner white lettering, but now it is a white block with a small orange  square inside.
    I'm novice when it comes to Regedit, so I'm wondering if anyone has had  similar problems or suggestions on how I could fix this file extension  problem.
    Thanks!

    something got messed up, usually re-starting is the miracle fix for a number of windows issues. If it does not get fix by itself try this:
    right click on an AI file, in the context menu choose "Open With", then go down to "Chose Program...". Find AI CS4, select it by clicking once and make sure to check "Always use selected program...."

  • Problems with processing files uploaded from Safari browsers

    I have a jsp that allows users to upload files via a secure form and the standard html <input type=”file” … > tag.
    For complex reasons I need to get the contents of the HttpServletRequest into a character array. Basically my code looks like this:
    BufferedReader reader = request.getReader();
    char[] ba = (char[]) Array.newInstance(char.class, MAXFILESIZE);
    int total = 0;
    int charsRead =0;
    while ((charsRead = reader.read(ba, total, 1024)) > -1)
    total += charsRead;
    When the request is submitted by a Safari browser, approximately 70% of the time, the very first reader.read does not return a result. After about 2 minutes, I get a SocketTimeoutException. On the client side, Safari shows a “loading ….” Message and after 5 minutes reverts to a blank screen – unsurprisingly since the server never serves up a response.
    By way of comparison, when the transaction is successful, the process takes less than 1 second.
    java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java(Compiled Code))
    at com.ibm.ws.io.Stream.read(Stream.java(Compiled Code))
    at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
    at com.ibm.ws.http.ContentLengthInputStream.read(ContentLengthInputStream.java(Compiled Code))
    at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
    at com.ibm.ws.webcontainer.http.HttpConnection.read(HttpConnection.java:342)
    at com.ibm.ws.webcontainer.srp.SRPConnection.read(SRPConnection.java:200)
    at com.ibm.ws.webcontainer.srt.SRTInputStream.read(SRTInputStream.java:80)
    at com.ibm.ws.webcontainer.srt.http.HttpInputStream.read(HttpInputStream.java:312)
    at java.io.InputStream.read(InputStream.java(Compiled Code))
    at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java(Compiled Code))
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java(Compiled Code))
    at java.io.InputStreamReader.read(InputStreamReader.java(Compiled Code))
    at java.io.BufferedReader.fill(BufferedReader.java(Compiled Code))
    at java.io.BufferedReader.read1(BufferedReader.java(Compiled Code))
    at java.io.BufferedReader.read(BufferedReader.java(Compiled Code))
    This problem occurs regardless of file size and even if Safari is told to report itself as firefox. This problem has not once occurred with any of IE 5,6 or 7 or Firefox 1.* and 2.*
    I have not been able to test this with Safari 3 Beta for Mac or Windows.
    Environment:
    Client is Mac OS-X 10.4.10 with Safari: 2.0.4
    Server is Websphere 5.1

    Since a few hours, I have the same problem like you. I uninstalled Firefox, because I thought it was a problem with it, but then i started Safari to redownload Firefox and guess what happened.. nothing. I can't download anything. don't know why. does anyone know whats wrong??

  • Problem with reading file:// hyperlinks.

    Hello all,
    Version of Reader: 10.1.3
    I have a pdf document with some hyperlinks to a file:// locations (locations to other pdfs on hard disk). While clicking into that file:// location, I have got the message:
    " Security Warning.
    This document is trying to connect to:
    file://C:/Documents and Setting/38432.pdf
    If you trust this site, chose Allow. If you do not trust this site, choose Block.
    [checkbox] Remember this action for this site for all PDF documents."
    The problem is that message is always poping up neither I click Allow or Block with checked checkbox to remember the action.
    When I click into http:// hyperlink in PDF document, that message is poping up only once, and remember the action when I check remember-checkbox.
    Anyone knows how to force Reader to remember that hyperlinks in PDF documents to file:// protocol are safe and Allow them to by trusted?

    thanx for that. i had an initialization problem that is now fixed
    the new problem is that. I have a client server and i download file from the server to the client. file can be any format so I use byte streams. now what happens is that I start reading streams from the file and packetize them , keep sending them to the client . my npacket siz eis variable . but when the last packet is written into the file at client it adds some garbage to that.
    the code lokks like this          
    int rem_bytes = packetcount;
    int no_bytes = Math.min(packetcount,1024);
    DatagramPacket receivePacket2;
    int count=0;
    while ( count < total )
    receivePacket2 = new DatagramPacket(receiveData2,receiveData2.length);
    clientSocket.receive(receivePacket2);
    myfile.write(      receivePacket2.getData() );
    count++;
    rem_bytes -= no_bytes;
    no_bytes = Math.min(rem_bytes,1024);
    } // END WHILE LOOP
    is there a way i sould tell the client to pick only a specified number of bytes from the last packet.

  • TS1702 I'm at a dead  end - developer not fixing the problem with downloading file transfers from QuickVoice to the computer.  How do I report.  I see the purchase history in itunes, but there is no place to report a problem.

    QuickVoice does not auto transfer files to the computer.  When contacting the developer they send you a lync to a transfer file.  My anti-viral software says its infected with a Trojan Horse.  QuickVoice says to ignore.  I question this.....  And AVG my anti-viral softward puts it in a vault and won't let you ignore.  I have tons of voice recordings I need to get to my computer.  Help Apple with the developer you have approved to sell on iTunes.

    If you haven't already resolved the problem, go to <https://discussions.apple.com/message/20794011#20794011> to learn how to use FunBox to transfer QV files to computer.

  • Problem with .mov files exported from Quicktime working with iMovie

    Since iMovie won't input .mpg files, it has been my practice to use Quicktime Pro to convert the .mpg to a .mov file and then import the .mov file into iMovie. With Quicktime 10 (no longer a Pro version), when I follow this procedure I get a .mov file that iMovie refuses to import. Why is this?

    I am having the same issue. Just purchased QT7 Pro. Converted .3GP format to .mov and cannot open in iMovie. Have you found an answer?

  • Problems with reading information sent from a servlet to an applet

    Ihave just created an applet and servlet. i want the servlet to send some data back to the applet so i can read it and just check to see whether the servlet has done the required job.
    here is part of the applet and servlet code.
    applet:
    url = "http://localhost:8080/servlet/Option1Servlet?Firstname="+firstname.getText()
                   +"&Lastname="+lastname.getText()+"&Staffstudentid="+staffstudentid.getText()
                   +"&Position="+position.getText()+"&Email="+email.getText();
              Vector servletInfo = new Vector();
              ObjectInputStream inputFromServlet;
              try{
                   String inputLine;
                   System.out.println(url);
                   URL urlocation = new URL(url);
                   URLConnection uc = urlocation.openConnection();
                   BufferedReader in = new BufferedReader(new InputStreamReader (uc.getInputStream()));
                        while((inputLine=in.readLine()) != null) {
                             servletInfo.add(inputLine);
                   System.out.println("recieved info from servlet about ot process!");
                   inputFromServlet = new ObjectInputStream(uc.getInputStream(checking));
                   checking = (int)inputFromServlet.readInt();
                   System.out.println(checking);
                   in.close();
              catch(java.io.IOException ex) {ex.printStackTrace();}
              if (checking == 0) {
              Regcomplete f5 = new Regcomplete();
              f5.setSize(500,400);
                   this.setVisible(false);
              f5.setVisible(true);
              else if (checking == 1) {
                   firstname.setText("ERROR HAS OCCURED! CLICK CANCEL");
                   lastname.setText("");
                   staffstudentid.setText("");
                   position.setText("");
                   email.setText("");
    servlet:
    public void sendCheckingValue(HttpServletResponse res, int checking) {
              ObjectOutputStream outputToApplet;
              try {
                   outputToApplet = new ObjectOutputStream(res.getOutputStream());
                   System.out.println("Sending int to applet ... ");
                   outputToApplet.writeInt(checking);
                   outputToApplet.flush();
                   outputToApplet.close();
                   System.out.println("Data transmission complete.");
                   System.out.println("Checking value sent = " + checking);
              catch (IOException e) { e.printStackTrace(); }
    i get this exception when i run the code: this exception is thrown in the applet when it attempts to read the input data that has been sent:
    C:\My Documents\logina>appletviewer Login.html
    http://localhost:8080/servlet/Option1Servlet?Firstname=nnnnnnnnn&Lastname=nn&Sta
    ffstudentid=99&Position=mm&Email=mm
    recieved info from servlet about ot process!
    java.io.StreamCorruptedException: Caught EOFException while reading the stream h
    eader
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:845
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:168)
    at Option1.actionPerformed(Option1.java:252)
    at java.awt.Button.processActionEvent(Button.java:329)
    at java.awt.Button.processEvent(Button.java:302)
    at java.awt.Component.dispatchEventImpl(Component.java:2593)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:131)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:98)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    can anyone help me please its urgent
    thansk
    fahad

    can some one help me plz, its urgent, i get the error at this point in my code what am i doing wrong here.
    inputFromServlet = new ObjectInputStream(uc.getInputStream());

  • Anyone experiencing problems with Keynote files transferring from email?

    Trying to open PowerPoint files, then store in Keynote.  Files won't open or transfer, all software is updated. 

    After research I downloaded an updated ACR 7.2
    What exactly did you do? The best way to update ACR is to go to Help>Updates in the editor, which should have brought you to 7.4.

  • Problem with MacBook Repair Extension Program for Hard Drive Issues

    I have a macbook that would be covered by the program (http://www.apple.com/support/macbook/hd/repairextension/).
    Since I bought it Nov 2006, it is not covered by the 3 year extension, but (to me) it looks like it is covered by the sentence +"or until August 15, 2010, whichever provides longer coverage.+"
    Apple Italy is currently refusing to apply the coverage, saying that only the 3 years coverage applies.
    So why do Apple wrote "whichever provides longer coverage"?
    To my laptop, longer coverage means August 15, 2010.
    Isn't it?
    Help needed! ... and really much appreciated!

    Nobody from Apple here (at least officially). We're all users just like you. I guess if Apple in Italy doesn't want to replace your hard drive, that's the end of the story. As I mentioned, hard drives are cheap now. The real question is your data on the present hard drive. If the computer still boots, I would strongly suggest you try to backup your data ASAP.
    I agree that this issue comes down to "whichever provides longer coverage". However, that aside, I have Apple Care on my MB and it only covers me for 3 years. Since I bought my MB in Nov '07, I'm covered until Nov '10. It doesn't make a lot of sense that you would be covered for a longer period than my Apple Care (which again is 3 years).
    Message was edited by: Macaby
    Message was edited by: Macaby

  • I was having an issue opening a spreadsheet with the file extension .xlsm. This appears as an attachment from a client which means macros were utilized when creating the spreadsheet. The problem lies in. The iPads ability to open the attachment. I downloa

    I was having an issue opening a spreadsheet with the file extension .xlsm. This appears as an attachment from a client which means macros were utilized when creating the spreadsheet. The problem lies in. The iPads ability to open the attachment. I downloaded the numbers app thinking this would be a default software to open any and all spreadsheets.
    Please Help!
    Ipad 2- iOS5

    You may need a version without macros on it. Unfortunately, pretty much all apps are skinned down versions of their original program, often with less functionality. For example in a word document I can italicize,bold and underline, but I only have a handful of fonts to play with and I don't think I can insert tables or images.
    It is very possible that the app simply cannot run macros, which means that document may never work on an iPad.

  • I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR

    I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR I never had this problem before was there some kind of update that could of cause this?

Maybe you are looking for

  • Issue with MacBook Pro charger?

    Hello, I bought my MacBook Pro 15" in October 2009. I hardly ever take it out of my place. Senior Apple adviser told me, that the battery in my computer is factory calibrated, so bassically I treat my laptop as iMac. It's connected to the charger all

  • Using text in photo books

    I'm making a photo book and find the text options limiting.  is there anyway  - even with a 3rd party ap - that you can add text over a photo?

  • Carry Foraward of AA Balances

    Hi, We have changed the fiscal year of FI-AA  to 2009 in t-code AJRW,  but some assets showing as error in Fiscal Year Change. and balances of those assets were not carry forwarded to FY 2009. i have also run the programme AUVA to complete the assets

  • Operating system not working

    My iphone went black this afternoon when I was listening to a podcast. Now I get either a white or black (occassionaly with apple)screen even with trying to reset it. Itunes will not recognize it.

  • Ora-00932 inconsistent data type expected date got number

    Hi all, I have got an error ora-00932 inconsistent data type expected date got number in the below part of query. NVL (TRUNC (wdj.date_completed), '14-NOV-2012') BETWEEN NVL (TRUNC(:p_wo_completion_date_from), NVL (TRUNC(wdj.date_completed), '14-NOV-