Cannot see my attached doc in file attachment list

Hi all,
I used the code below to attach a doc to a pernr. After attaching a PDF document to pernr 00070845, I goto transaction PA20/PA30 to see the attachment list. However, I cannot manage to see the doc in the attachment list. Idoublle check that table SOOD (SAP Office: Object Definition) contains the added entry but table SRGBTBREL(Relationship in GOS Environment) did not have the entry. What could be the problem here in the codes?
"Construct upload structure from xstring
This part of code is meant ONLY for .PDF file type
IF wa_document_type = 'PDF'.
    WHILE wa_stringlength <> -1.
      CLEAR: wa_xbuf, wa_contents_hex.
      wa_stringlength = STRLEN( wa_datastring ).
      IF wa_stringlength >= 510.
        wa_xbuf = wa_datastring(510).
        wa_datastring = wa_datastring+510.
      ELSE.
        wa_xbuf = wa_datastring.
        wa_stringlength = -1. "end condition
      ENDIF.
      <contents_hex> = <xbuf>.
      APPEND wa_contents_hex TO wt_contents_hex.
    ENDWHILE.
ENDIF.
  "Find proper folder for uploading
  CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET' DESTINATION 'NONE'
   EXPORTING
    OWNER                       = ' '
     region                      = 'B'
   IMPORTING
     folder_id                   = wa_folder_id
   EXCEPTIONS
     communication_failure       = 1
     owner_not_exist             = 2
     system_failure              = 3
     x_error                     = 4
     OTHERS                      = 5
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  wa_document_data-obj_name = 'MESSAGE'.
  wa_document_data-obj_descr = wa_filename.
  wa_document_data-obj_langu = 'E'.
  "Upload the document
  CALL FUNCTION 'SO_DOCUMENT_INSERT_API1' DESTINATION 'NONE'
    EXPORTING
      folder_id                        = wa_folder_id
      document_data                    = wa_document_data
      document_type                    = wa_document_type
   IMPORTING
     document_info                    = wa_document_info
   TABLES
    OBJECT_HEADER                    = wt_object_header
    OBJECT_CONTENT                   = wt_object_content
     contents_hex                     = wt_contents_hex
    OBJECT_PARA                      = wt_object_para
    OBJECT_PARB                      = wt_object_parb
   EXCEPTIONS
     folder_not_exist                 = 1
     document_type_not_exist          = 2
     operation_no_authorization       = 3
     parameter_error                  = 4
     x_error                          = 5
     enqueue_error                    = 6
     OTHERS                           = 7
  IF sy-subrc = 0.
    COMMIT WORK.
  ENDIF.
  wa_obj_rolea-objkey = lo_stru_input_param-pernr.
  wa_obj_rolea-objtype = 'BUS1065'.
  wa_obj_roleb-objkey = wa_document_info-doc_id(34).
  wa_obj_roleb-objtype = 'MESSAGE'.
  CALL FUNCTION 'BINARY_RELATION_CREATE' DESTINATION 'NONE'
    EXPORTING
      obj_rolea            = wa_obj_rolea
      obj_roleb            = wa_obj_roleb
      relationtype         = 'ATTA'
      FIRE_EVENTS          = 'X'
    IMPORTING
      BINREL               =
    TABLES
      BINREL_ATTRIB        =
   EXCEPTIONS
     no_model             = 1
     internal_error       = 2
     unknown              = 3
     OTHERS               = 4
  IF sy-subrc <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  COMMIT WORK.
Edited by: Siong Chao on Nov 15, 2010 11:03 AM
Edited by: Siong Chao on Nov 15, 2010 11:05 AM

Hi Siong,
as I remember I faced rough the same problem.
Solution for me was to use an explicit transaction management and only one COMMIT WORK.
Block before upload (logic from program SAPLSO33 PAI: USER_COMMAND_0100)
  DATA:
    lr_transaction_mgr   TYPE REF TO  if_os_transaction_manager,
    lr_transaction       TYPE REF TO  if_os_transaction,
    lr_os_ps             TYPE REF TO  if_os_persistency_manager
  TRY.
      CALL METHOD cl_os_system=>init_and_set_modes
        EXPORTING
          i_update_mode     = oscon_dmode_direct
          i_external_commit = oscon_false.
      lr_transaction_mgr = cl_os_system=>get_transaction_manager( ).
      lr_transaction = lr_transaction_mgr->create_transaction( ).
      TRY.
          CALL METHOD lr_transaction->start.
        CATCH cx_os_transaction_mode.
          lr_transaction->set_mode_update( oscon_dmode_update_task ).
          lr_transaction->start( ).
      ENDTRY.
    CATCH cx_os_error cx_os_system_error INTO lr_except.
      CALL METHOD lr_except->get_longtext
        EXPORTING
          preserve_newlines = abap_false
        RECEIVING
          result            = lv_except_text.
      CALL METHOD lr_except->get_source_position
        IMPORTING
          program_name = lv_except_prog
          include_name = lv_except_incl
          source_line  = lv_except_line.
      WRITE: / iv_file, lv_except_text, 'in', lv_except_prog, '/', lv_except_incl, lv_except_line.
      cv_errlvl = 1.
      RETURN.
  ENDTRY.
Block after linking with BINARY_RELATION_CREATE:
  TRY.
      lr_os_ps = cl_os_system=>get_persistency_manager( ).
      CALL METHOD lr_os_ps->set_update_mode
        EXPORTING
          i_mode = oscon_dmode_direct.
      CALL METHOD lr_transaction->end.
    CATCH cx_os_error cx_os_system_error INTO lr_except.
      CALL METHOD lr_except->get_longtext
        EXPORTING
          preserve_newlines = abap_false
        RECEIVING
          result            = lv_except_text.
      CALL METHOD lr_except->get_source_position
        IMPORTING
          program_name = lv_except_prog
          include_name = lv_except_incl
          source_line  = lv_except_line.
      WRITE: / iv_file, lv_except_text, 'in', lv_except_prog, '/', lv_except_incl, lv_except_line.
      CALL METHOD lr_transaction->undo.
      IF cv_errlvl EQ 0.
        cv_errlvl = 1.
      ENDIF.
      RETURN.
  ENDTRY.
  COMMIT WORK.
On undesirably sy-subrc use lr_transaction->undo.
Regards, Hubert
Edited by: Hubert Heitzer on Nov 15, 2010 12:40 PM

Similar Messages

  • Email attachment filenames appear as "mail attachment".doc or "mail attachment."pdf

    Hi,
    I have Mac OS 10.7.5, I've synchronised my hotmail/outlook address to Mail application.
    I have no issues with sending or receiving emails with attachments.
    The problem I'm having is that the filename of all attachments appear as "mail attachment.doc" for Word files or as "mail.attachment.pdf" for PDF files.
    1)  If I log on to my hotmail account through the browser the attachments appear with the correct file name.
    2) The attachment file names happen to also appear correctly on my iPhone.
    3) I have other mailboxes set up in Mail application and attachment file names appear correct.
    It seems to be an issue with Mail application and the hotmail/outlook account.
    I would appreciate if anyone can give me some feedback on this issue.
    Kind regards,
    Doble Korona

    Peter
    Some things to try - after each step, see if it works...
    Ensure that you have the latest version of the OS and Quicktime and iPhoto.
    1. Repair Permissions using Disk Utility
    2. Delete the com.apple.iPhoto.plist file from the home / library / preferences folder. You'll need to reset your User options afterwards.
    3. Download BatchMod from
    http://macchampion.com/arbysoft/
    And apply it to the iPhoto Library Folder using the settings found here:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/BatChmod.png
    (Credit to Old Toad for this one).
    4. Create a new account (systempreferences -> accounts) and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD

  • Cannot see text in large PDF file

    Hi all,
    I've searched Google and these forums, but I have yet to find anything relating to my issue.
    I'm trying to view a PDF file, but I cannot see any text in Adobe Reader.
    I've viewed it w/ the FoxIt reader, and I can see all text there.
    Any idea as to what the problem w/ Adobe reader is?
    I have the most up-to-date version of the reader.
    Thanks in advance.

    Enable the entry 'Show large images' in the preferences of Adobe Reader.

  • Our team cannot see shared and sync'd files in our Creative Cloud account.  How can we fix this?

    The team members are logged in, have loaded a test file in the Creative Cloud Files directory, uploaded them to the Cloud and made the files public, but we cannot see them in the web browser under "Creative Cloud Files".
    The files seem to be there because we can send an email with a link to the files and can see them through the linke, just not in the browser.
    What might we be doing wrong?

    Folder sharing is not available yet. It is being worked on.
    So currently a file is owned by one Adobe ID. That Adobe ID can create a public sharing link to that file. Anyone can access this link whether or not they are signed in with an Adobe ID.

  • Colour problem, inverted? cannot see a thing on any file

    Hello,
    I've got iWork 09, and ive just noticed that this problem seems to be on all 3 of the programs.
    What happens is that no matter what i open, existing file, template, you just cant see it, you have to highlight it in order to know whats on there lol. For some reason it worked a couple weeks ago when i updated my C.V, but when i click on say, business cards, you can't see a thing. I just updated to 9.03 but no success.
    I'd upload a screenshot here but i can't seem to be able to, so instead, if you've got an account at MacRumors then here: http://att.macrumors.com/attachment.php?attachmentid=205124&d=1259506729
    Many thanks

    Peggy wrote:
    Several reasons for me & I'm sure I'll think of more:
    Able to resize icons in a finder window with the slider at the bottom right of the window. No need to open View Options for it.
    After a Spotlight search (which does not do a column view), window view will revert to whatever view you had before.
    Preview's annotations are better. You can insert text boxes in the PDF like before Leopard.
    Wow, those really knock my socks off! The problem is that Windows 7 is a genuine improvement on what they had before, Snow Leopard didn't even do any elementary household cleanup.
    They may have improved the plumbing and wiring but everything that was broke and in your face is still there.
    Plus the plumber and electrician did a bit more damage whilst they were at it.
    The biggest "bad thing" is the difficulties in combining PDFs. It can be done, but does not work as well as before.
    Seems like Apple takes some of the "procedural" tasks in OSX up yet another notch of irritation in every version.
    An increasingly dumbed down, broken "simplicity".
    Peter

  • URGENT-- cannot see   sql modeler contents (xml file)

    All,
    I have tried to open up a model which has been developed with earlier versions of sql modeler.
    below, I have copied the contents of the calling XML file for your comments,.
    it seems like 2.xx version and somehow it shows empty.! I searched through the sub folders and there are 100s of xml files.
    I tried 1.5.x and latest version of sql modeler no luck so far. what am I missing or any workaround please..
    thanks
    ali
    ========================
    *<?xml version="1.0" encoding="UTF-8" ?>*
    *<model version="2.0">*
    *     <version version="3.2" design_id="C6FFE67F-9E2B-07CE-8B7A-C790E645720B" />*
    *     <object>*
    *          <comment></comment>*
    *          <notes></notes>*
    *          <alter type="created">*
    *               <user>hdai</user>*
    *               <timestamp>2009-05-31 08:30:30</timestamp>*
              </alter>
              <alter type="changed">
                   <user>hdai</user>
                   <timestamp>2009-06-22 10:17:09</timestamp>
              </alter>
         </object>
         <engineering_params delete_without_origin="false" engineer_coordinates="true" engineer_generated="true" show_engineering_intree="false" apply_naming_std="false" use_pref_abbreviation="true" upload_directory="" />
         <eng_compare show_sel_prop_only="true" not_apply_for_new_objects="true" exclude_from_tree="false">
              <entity_table>
                   <property name="Name" selected="true" />
                   <property name="Short Name / Abbreviation" selected="true" />
                   <property name="Comment" selected="true" />
                   <property name="Comment in RDBMS" selected="true" />
                   <property name="Notes" selected="true" />
                   <property name="TempTable Scope" selected="true" />
                   <property name="Table Type" selected="true" />
                   <property name="Structured Type" selected="true" />
                   <property name="Type Substitution (Super-Type Object)" selected="true" />
                   <property name="Min Volumes" selected="true" />
                   <property name="Expected Volumes" selected="true" />
                   <property name="Max Volumes" selected="true" />
                   <property name="Growth Percent" selected="true" />
                   <property name="Growth Type" selected="true" />
                   <property name="Normal Form" selected="true" />
                   <property name="Adequately Normalized" selected="true" />
              </entity_table>
              <attribute_column>
                   <property name="Name" selected="true" />
                   <property name="Data Type" selected="true" />
                   <property name="Data Type Kind" selected="true" />
                   <property name="Mandatory" selected="true" />
                   <property name="Default Value" selected="true" />
                   <property name="Use Domain Constraint" selected="true" />
                   <property name="Comment" selected="true" />
                   <property name="Comment in RDBMS" selected="true" />
                   <property name="Notes" selected="true" />
                   <property name="Source Type" selected="true" />
                   <property name="Formula Description" selected="true" />
                   <property name="Type Substitution" selected="true" />
                   <property name="Scope" selected="true" />
              </attribute_column>
              <key_index>
                   <property name="Name" selected="true" />
                   <property name="Comment" selected="true" />
                   <property name="Comment in RDBMS" selected="true" />
                   <property name="Notes" selected="true" />
                   <property name="Primary Key" selected="true" />
                   <property name="Attributes/Columns" selected="true" />
              </key_index>
              <relation_fk>
                   <property name="Name" selected="true" />
                   <property name="Comment" selected="true" />
                   <property name="Comment in RDBMS" selected="true" />
                   <property name="Notes" selected="true" />
              </relation_fk>
              <entityview_view>
                   <property name="Name" selected="true" />
                   <property name="Comment" selected="true" />
                   <property name="Comment in RDBMS" selected="true" />
                   <property name="Notes" selected="true" />
                   <property name="Structured Type" selected="true" />
                   <property name="Where" selected="true" />
                   <property name="Having" selected="true" />
                   <property name="User Defined SQL" selected="true" />
              </entityview_view>
         </eng_compare>
         <changerequests id="" />
         <design type="Data Types" id="2391D8C8-FEC6-9182-ED6C-6EAE53428D29" path_id="0" main_view_id="420C75F3-BD6B-8126-6EBA-050A1FC9BE54" should_be_open="true" is_visible="false">
              <name>DataTypes</name>
              <comment></comment>
              <notes></notes>
         </design>
         <design type="LogicalDesign" id="4A0EEC77-6A89-10AC-351F-172AA6998230" path_id="0" main_view_id="83AB3B8B-90C4-D6A9-291D-A65F781E85D9" should_be_open="true" is_visible="true">
              <name>Logical</name>
              <comment></comment>
              <notes></notes>
         </design>
         <design type="RelationalModel" id="1214B08E-6B1C-9449-2769-131F7637FD5C" path_id="1" main_view_id="11A685B9-D950-8186-6160-DDAD08DAC3C0" should_be_open="true" is_visible="false">
              <name>SMARTD</name>
              <comment></comment>
              <notes></notes>
         </design>
         <design type="RelationalModel" id="A61B461D-F897-0CBF-3924-4BC3D33F3D13" path_id="2" main_view_id="2F6C7BB5-3F13-8657-DD84-BAFEF664D2D8" should_be_open="true" is_visible="false">
              <name>SMARTD(2)</name>
              <comment></comment>
              <notes></notes>
         </design>
         <design type="Process Model" id="7B21085F-9F75-F895-17AA-32592475602A">
              <name>Process Model</name>
              <comment></comment>
              <notes></notes>
         </design>
         <design type="Business Information" id="C0C1E8B7-7CDE-F345-C446-412C87D12639" path_id="0" main_view_id="null" should_be_open="true" is_visible="false">
              <name>Business Information</name>
              <comment></comment>
              <notes></notes>
         </design>
         <domains>
              <domain name="defaultdomains" role="uses" />
         </domains>
    </model>

    Philip:
    here is the Log file ( running modeler 2.0). hope it helps.
    thx
    ali
    ================LOG file==========
    2009-12-02 13:53:34,312 [main] INFO ApplicationView - Oracle SQL Developer Data Modeler Version: 2.0.0 Build: 570
    2009-12-02 13:53:36,890 [main] WARN AbstractXMLReader - There is no file with default domains (path: domains name: defaultdomains)
    2009-12-02 13:54:58,390 [Thread-3] ERROR FileManager - getDataInputStream: Can not read data
    java.io.FileNotFoundException: D:\1D_data\LADPSS\docs\reference\data_model\data_model\relational\1214B08E-6B1C-9449-2769-131F7637FD5C.xml (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStream(Unknown Source)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStreamWithoutExtension(Unknown Source)
         at oracle.dbtools.crest.model.persistence.XMLPersistenceManager.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.recreateDesign(Unknown Source)
         at oracle.dbtools.crest.model.design.relational.RelationalDesign.load(Unknown Source)
         at oracle.dbtools.crest.model.design.Design.openDesign(Unknown Source)
         at oracle.dbtools.crest.swingui.ControllerApplication$OpenDesign$2.run(Unknown Source)
    2009-12-02 13:54:58,390 [Thread-3] ERROR AbstractXMLReader - Data inputstream is null (path: data_model/relational name: 1214B08E-6B1C-9449-2769-131F7637FD5C)
    2009-12-02 13:54:58,390 [Thread-3] ERROR FileManager - getDataInputStream: Can not read data
    java.io.FileNotFoundException: D:\1D_data\LADPSS\docs\reference\data_model\data_model\relational\A61B461D-F897-0CBF-3924-4BC3D33F3D13.xml (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStream(Unknown Source)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStreamWithoutExtension(Unknown Source)
         at oracle.dbtools.crest.model.persistence.XMLPersistenceManager.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.recreateDesign(Unknown Source)
         at oracle.dbtools.crest.model.design.relational.RelationalDesign.load(Unknown Source)
         at oracle.dbtools.crest.model.design.Design.openDesign(Unknown Source)
         at oracle.dbtools.crest.swingui.ControllerApplication$OpenDesign$2.run(Unknown Source)
    2009-12-02 13:54:58,390 [Thread-3] ERROR AbstractXMLReader - Data inputstream is null (path: data_model/relational name: A61B461D-F897-0CBF-3924-4BC3D33F3D13)
    2009-12-02 13:54:58,390 [Thread-3] ERROR FileManager - getDataInputStream: Can not read data
    java.io.FileNotFoundException: D:\1D_data\LADPSS\docs\reference\data_model\data_model\processmodel\7B21085F-9F75-F895-17AA-32592475602A.xml (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStream(Unknown Source)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStreamWithoutExtension(Unknown Source)
         at oracle.dbtools.crest.model.persistence.XMLPersistenceManager.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.recreateDesign(Unknown Source)
         at oracle.dbtools.crest.model.design.process.ProcessModel.load(Unknown Source)
         at oracle.dbtools.crest.model.design.Design.openDesign(Unknown Source)
         at oracle.dbtools.crest.swingui.ControllerApplication$OpenDesign$2.run(Unknown Source)
    2009-12-02 13:54:58,390 [Thread-3] ERROR AbstractXMLReader - Data inputstream is null (path: data_model/processmodel name: 7B21085F-9F75-F895-17AA-32592475602A)

  • PC People cannot see my Quicktime converted WMV file

    I'm running QT Pro and Flip4mac studio. I've converted a QT file to a WMV file. When I post via iweb, my client using their explorer browser gets this: install activex control 'quicktime' from apple computers.
    My clients are not going to download software. Although we all know QT is better. I thought WMV files play on PCs. That's why I went to the trouble of converting the file...
    Any ideas on how I can solve this?
    Cheers

    Post a URL so we can see the page code.
    I thought iWeb only wrote page code that called the QuickTime plug-in.

  • Cannot see Windows PC on MAC (files or printer)

    I am new to MAC and am trying to add new macbooks to a PC network running Vista. Everything is networked via ethernet cable and a router. I have an HP Color Laserjet 2500 hooked up to one of the PCs and downloaded the mac drivers from the internet. The file and printer sharing works fine between the PCs and the PCs can see the MACs but the MACs do not see the PCs. When I try to set up a printer and go to the Windows option, nothing is there to choose. The connection between the computers is there because they can share the internet connection and I pinged from both mac and PC and it was fine. How can I get the MACs to see the PCs and share printers? Please help.

    The fax should be treated the same as a printer.
    I'm not familiar wit that specific printer, but if it works like most other fax software, you should be able to select print, then instead of sending to the printer proper, you select the fax function from inside the print dialog.
    scanning is a different critter altogether - the scanner software may not like (or even recognize, for that matter) scanning to/from IP. I know on our big copiers at work, network scanning takes additional configuration on the copier itself.
    Perhaps your printer is similar?

  • Cannot see optical drive or read files from superdrive

    This is my first ever posting so I apologize if I’m giving too much info.
    A couple years ago I installed a Pioneer DVD-RW DVR 107D in the top bay of my G4 (mirrored doors) and put the combo drive (Philips CDD5105) in the bottom bay. Back then I was running OS 9. All worked well, and continued to after I decided to start using OS X. I continued updating all the way up to 10.4.8 (I have avoided updating to 10.4.9 since it caused issues on our IBook). About a year ago the combo drive would come and go (in the system profiler) but the super drive was still working fine. Over the past year strange things began happening. If I would insert a kids games CD it would cause a kernel panic. So I simply used our Ibook to let my daughter play reader rabbit. For about the past 6 months the combo drive has not been recognized in system profiler. But other than the kids cds the super drive seemed to be working well reading & writing both CDs & DVDs. Then it began to error out burning CDs saying they could not be verified but the CDs were turning out ok it was burning DVDs without a problem. Within the last couple weeks it stopped recognizing files correctly. If it is an image or ai document it would say the files could not be opened and it would also not open installers of any kind. I finally decided to try to get it fixed. Last weekend I ran Tech tool & optimized the hard drives and low and behold it was fixed. Combo drive was back & working, Super drive was working correctly & the kids CDs did not cause problems either. This lasted for about 4 days of very infrequent use and all the problems were back. Then yesterday after being off for a couple days I started it up and all was ok again. So I left it on over night planning to make a disk image of it today. At this point I had a theory that my set up might be causing the problem. Since I had been running OS X it was installed and running on a second hard drive I had installed connected to a slave bus while OS 9 was still on the original hard drive connected to the master bus. So I cleaned off the main hard drive and thought since it was working correctly I could transfer the system & apps to the other hard drive and save the working disk image. But of coarse in the middle of transferring files around the combo drive vanished again and the super drive won’t read files correctly. So I decided to reinstall from my OS 10.4 DVD on the main hard drive and reinstall all my apps. But I can’t get it to read or boot up from the DVD. I tried running Tech Tool again with no luck.
    Could this be as simple as a bad preference or something?
    Here are the machine specs
    Machine Name: Power Mac G4
    Machine Model: PowerMac3,6
    CPU Type: PowerPC G4 (2.1)
    Number Of CPUs: 2
    CPU Speed: 867 MHz
    L2 Cache (per CPU): 256 KB
    L3 Cache (per CPU): 1 MB
    Memory: 1.75 GB
    Bus Speed: 133 MHz
    Boot ROM Version: 4.4.8f2
    PowerPC G4 dual 867   Mac OS X (10.4.8)  

    The only thing that seems strange about it being the drives is that whenever the combo drive disappears from the menu the super drive will simultaneously not read files correctly and cause kernel panics etc. And when the combo drive can be seen both drives work with no problems. Would that system still point to failing hardware? It just seems that since it's either both or neither that something that effects them both would be the culprit. Since I posted I was able to reload tiger & after the restart the problem returned. Then another restart it was fine all day. To your point replacement drives are reasonably priced & easy to install so I probably should just get one & try it.
    Thanks for your advise
    Carl

  • HT2905 I want to delete duplicates from my iTunes music but cannot see "Display Exact Duplicates" in File menu.

    Hi,
    I want to delete duplicates from my iTunes music but and iTunes help says to click on "Display Exact Duplicates" in File men but I don't appear to have this function.  Where else can I look?

    Thanks Kappy. I had just found it but thanks reply.  Next question is:  Is there a quick way to then delete the duplicates without having to select each one and delete?

  • I cannot see my purchases or movies from the list

    I turn my apple TV second gen and all I see is internet, computer, and settings.  No option for my movies or purchases. My wi-fi has a strong signal. Any ideas what to do?

    Alexgarciai wrote:
    I have not indagad the software of my appletv, iPhone or iPad because must of the problems I raed here seemed to be related to upgrades. Do you think it is really safe to update?
    I actually preferred the layout on AppleTv software 4 compared to the new 5.x software - mine updated accidentally - it doesn't really offer anything new so no rush if you don't want to.
    The majority of iOS updates work fine with no issues but a small percentage of people get problems.
    I tend to wait before updating whenever I can, but eventually get around to it!
    AC

  • Cannot see zipped files in Windows Explorer

    I used the code below to create a zip file. When I use Winzip to open a zip file named test.zip, I can see all the files (a.txt, b.class, etc.) that have been zipped. But, when I double-click on the test.zip in Windows Explorer (Windows XP Professional), I cannot see any of the zipped files.
    Can someone give me some pointers?
    import java.util.*;
    import java.util.zip.*;
    import java.io.*;
    public class CreateZip
         public CreateZip()
         public void createZipFile(String[] all_array, String zipfilename)
              FileOutputStream pout; // declare a file output object
    PrintStream p;
              String file_path = "D:\\Docs\\FedPlanner\\";
    try
    pout = new FileOutputStream(file_path + "FedPlanner_Zip_log.txt");
    p = new PrintStream( pout );
                   for (int i = 0; i < all_array.length; i++)
                        System.out.println("all_array = " + all_array);
                        p.println (all_array[i]);
    p.close();
    catch (Exception e)
    System.err.println ("Error writing to file");
              byte[] buf = new byte[1024];
              try
                   String outFilename = file_path + zipfilename;
              ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
                   for (int i=0; i< all_array.length; i++) //
                   FileInputStream in = new FileInputStream(file_path + all_array[i]);//filenames
                   out.putNextEntry(new ZipEntry(file_path +all_array[i]));//filenames
                   int len;
                   while ((len = in.read(buf)) > 0)
                   out.write(buf, 0, len);
                   out.closeEntry();
                   in.close();          
              out.close();
              catch (IOException e)
                   e.printStackTrace();
         public static void main(String args[])
              for(int i=0; i < all_array.length; i++)
                   System.out.println("x = " + all_array[i]);
              CreateZip create = new CreateZip();
              create.createZipFile(all_array);

    I have never created a zip file using Java . But from what i know about Winzip and Window Explorer, here's my takes on it:
    1. Winzip works with severals different compression algorithm 9including their own)
    2. Winzip has the ability to display the content of the zip file (if the zip file happens to be one of the compression algorithm they supported....otherwise, it's highly unlikely, winzip can even open the file)
    3. Window Explorer does not call Winzip to display the content of Winzip file. rather, Window Explorer has its own utility to look into the Winzip for files and display them. Note: they probably only do this for the popular compression algorith (such as Winzip .zip, probably .tar...but highly doubtful of the one that Java use to make a zip file).
    So..it's probably Window Explorer does not supports display that compression algorithm (the one Java use) for a Winzip file.
    Example...you created a new format for an image call .mypics
    Window Explorer can display a thumb nail for .bmp, .jpeg, and quite a few other
    You created an application to display the image. Now..in Window Explorer, when you click on the icon, the thumbnail of the pic is not display...this is because Window Explorer does not have a util to do thumbnail for that format.

  • I cannot see the Source List in iTunes. How do I get it back? Thanks!

    I cannot see the Source List in iTunes. How do I get it back? I am trying to eject my ipod classic, and there is no option to do so, because I cannot see the ipod, let alone the source list in itunes. I'm also unable to restore my ipod, and I get a message saying it is corrupt,and now I can't even eject it! What do I do?!? Thanks!

    Hello twangchick,
    Thank you for contributing to the Apple Support Communities.
    You can use the steps in this article to view the device list in iTunes and eject your iPod. The steps are slightly different for the different version of iTunes:
    Locate and view your connected iPhone, iPad or iPod touch in iTunes - Apple Support
    I know it can be frustrating to have a device that isn't working as it should, and this link may also help with restoring your iPod classic:
    Restoring iPod to factory settings - Apple Support
    If your iPod can't be restored normally, try placing it into Disk Mode. See the instructions under "iPod devices with a Click Wheel" in this article:
    Putting iPod into Disk Mode - Apple Support
    Sincerely,
    Jeremy

  • When trying to add an attachment for my online class i cannot seem to see any of my computers files or documents

    I am attending an online class through QCC Online. When I try to "add an attachment" from my files to submit an assignment, it will not let me see (or attach) any of my computers files or documents.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Acrobat cannot open the file attachment because your PDF file attachment settings do not allow......

    I have an email with an attachment that requires a password the open.  I can open the file but embedded in the attachment is another attachment.  When I double click attachment I get the following error message.  Acrobat cannot open the file attachment because your PDF file attachment settings do not allow this file type to be opened.

    You would need to make a change to your registry; see http://www.adobe.com/devnet-docs/acrobatetk/tools/AppSec/attachments.html
    Basically you would need to add the .pdf with the permission 2.
    Let us know if you need help with that.  Either way, make sure to create a System Restore Point before editing the registry.

Maybe you are looking for

  • Itunes store wont open

    i got the windows 8 computer for christmas and i downloaded itunes on it and when i tried to open the store it wouldnt even when i was signed in, also i cant connect my ipod touch to itunes to download music. someone please help me!!!

  • Display a file with in the ADF screen in the edit mode.(RTF or Word format)

    Hi , As per my business need i need to display a file (.doc or .pdf) in the ADF screen in the edit mode. Later user can be able to save the document . As of now i am using a separate editor for edit the document. but that editor is supporting only fo

  • Trading in old AT&T iPhone4: do I need to mail  the original headset, usb cable and wall charger?

    I received Verizon's prepaid mail-back envelope, but it's so small that it looks like designed for the iPhone4 only, there is not much space to squeeze in the original, but old accessories. The FAQ section does not answer this question.  

  • Synchronization of Topic with TOC in OHJ

    We are running OHJ (OHJ Version 4.2.7.0.0 Production) for the first time. One of its listed features is: "Synchronization with items in the table of contents" This feature does not seem to run, nor do we know how to make it run. Can anyone shed any l

  • Oracle Connection - java.lang.ClassCastException

    Hi there, I am trying to connect to Oeacle database from Java application( Webdynpro from SAP). I have created a datasource in J2EE Engine, and trying to connect with ffolowing code: InitialContext ctx = new InitialContext(); DataSource ds = (DataSou