Adding a new PDF to the library of books to use in iBooks via iTunes fails

Hi everyone who is not a beginner at his/her mac,
I try to add a new PDF file the my iBooks Library using the iTunes app, but this does no more work for me. I looked in the System log and found that there is a problem to put a finder window to front.
A part of the messages which could be related to this problem are:
2014-01-26 18:51:10 +0100 launchservicesd[54]: Application App:"Finder" asn:0x0-b00b pid:256 refs=8 @ 0x7fc37060f6e0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x25025 pid=460 "SecurityAgent"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100004/0x186a4 queue
2014-01-26 18:51:10 +0100 WindowServer[104]: [cps/setfront] Failed setting the front application to Finder, psn 0x0-0xb00b, securitySessionID=0x186a4, err=-13066
What is the reason for this behavior? How to fix it ?
The next problem is reported in the log file with the following:
2014-01-26 18:54:17 +0100 MDCrashReportTool[464]: 464:3674112|CrashReportCopierAFC.m:-[CrashReportCopierAFC copyAndProcessRemotePath:usingConnection:]| ERROR: Could not remove remote path at ./DiagnosticLogs/security.log.20140119T105324Z.gz
I would be lucky if someone could help.
Hartmut

If it's a zip file that just contains the classes,
then (brilliant insight here) change it's name so
that it's a jar file. If it's a zip file that
contains a bunch of documentation and readme files
and also a jar file that contains the classes, then
extract that jar file and use it.Do you mean that the only difference between jar files and zip files is the extension name???

Similar Messages

  • 160gb classic won't sync after adding a new album to the library..'sync' lettering in devices is not highlighted

    All was fine until i bought two new albums and tried to sync them today. They appear along with artwork in the library but the 'sync' lettering in 'devices' isn't highlighted and syncing simply does not take place.
    I had to re-install Norton anti-virus software today but otherwise cannot think of any possible explanation for the lack of response.
    Ipod is close to being full but i think i have enough space left...i can't delete any albums now anyway..except from the library.
    I have re-installed i-tunes.
    Help gratefully welcomed

    Ok I've got some additional info. If I reload the offending videos into itunes as Movies rather than TV shows then the'll load onto my iPod. Anyone know why my iPod would let me load it with a movie but not let me load it after the exact same video is changes to a tv show? Someone has GOT to know something. Please people please!

  • CProjects - Adding a new field to the detail screen of object link

    Hi All,
    I've a requirement of adding a new field to the detail screen of object link. But the field is a combination of 3 other standard fields.
    Please let me know how could i realise this functionality?
    Thanks in advance.

    Hi Srini,
    Thanks for your Reply
    I have kept 01 against the field BSEG-AUGDT and selected the preselect check box also.
    But still that field is not visible in the dynamic selection screen.
    Thanks
    Ajay.D

  • Adding a new field to the search help exit

    Hi friends,
    adding a new field to the search help exit. How does it work ?
    Thanks in advace
    Ilhan

    The search help exit allows you to modify functionality of search help. If you add a new field to the
    parameter list that is not contained on the selection method you can manually populate it within the search
    help exit.
    This  would be performed within the u2018STEP DISPu2019 section. Once within this section all search help
    data has been retrieved and is stored in table RECORD_TAB (record_tab-string) as one long string value.
    Therefore you need to read table SHLP in-order to locate position of value within string.
    Example:
    To find position of personnel number (PERNR) within elemenory search
    help M_PREMN you would use the following code:
    Loop at record_tab.
         read table shlp-fielddescr into wa_shlp
                                       with key tabname   = 'M_PREMN'
                                                fieldname = 'PERNR'.
    You could then use this information in the following way, for
    example, to find a persons organisation unit:
          select  orgeh endda
            up to 1 rows
            from pa0001
            into (ld_orgeh,ld_endda)
           where pernr eq record_tab-string+wa_shlp-offset(8)
                                                      u201Cpernr length is 8
           order by endda descending.
          endselect.
          select single orgtx
            from t527x
            into ld_orgtxt
           where orgeh eq ld_orgeh and
                 sprsl eq sy-langu and
               ( endda ge sy-datum and
                 begda le sy-datum ).
    If you have added a new field to the end of the parameters list
    the next step is to populate it by adding this data to the end of
    the record_tab string:
      concatenate record_tab-string ld_orgtxt into record_tab-string.
      modify record_tab.
    endloop.

  • Adding a new field to the Address Data for a business partner

    Hi Experts,
    I am trying to add a new custom field to the address data (all structures and tables) that is linked to a business partner on SAP CRM via EEWB. Structure is the address structure wthin BUS_EI_EXTERN. Table is BUT020. I have been told that it is not possible as there is no Business Object that allows this. When doing an EEWB, the only business object is BUPA, which when selected, adds the new custom field to BUT000. I would like the field to be added to BUT020 (Address Table). This leads me to believe that there is no standard way of doing this, which ultimatley means that it would need to be done manually. Please help me with this predicament.
    Regards
    Yusuf

    The search help exit allows you to modify functionality of search help. If you add a new field to the
    parameter list that is not contained on the selection method you can manually populate it within the search
    help exit.
    This  would be performed within the u2018STEP DISPu2019 section. Once within this section all search help
    data has been retrieved and is stored in table RECORD_TAB (record_tab-string) as one long string value.
    Therefore you need to read table SHLP in-order to locate position of value within string.
    Example:
    To find position of personnel number (PERNR) within elemenory search
    help M_PREMN you would use the following code:
    Loop at record_tab.
         read table shlp-fielddescr into wa_shlp
                                       with key tabname   = 'M_PREMN'
                                                fieldname = 'PERNR'.
    You could then use this information in the following way, for
    example, to find a persons organisation unit:
          select  orgeh endda
            up to 1 rows
            from pa0001
            into (ld_orgeh,ld_endda)
           where pernr eq record_tab-string+wa_shlp-offset(8)
                                                      u201Cpernr length is 8
           order by endda descending.
          endselect.
          select single orgtx
            from t527x
            into ld_orgtxt
           where orgeh eq ld_orgeh and
                 sprsl eq sy-langu and
               ( endda ge sy-datum and
                 begda le sy-datum ).
    If you have added a new field to the end of the parameters list
    the next step is to populate it by adding this data to the end of
    the record_tab string:
      concatenate record_tab-string ld_orgtxt into record_tab-string.
      modify record_tab.
    endloop.

  • ADDING A NEW ITEM IN THE CREDIT REQUEST DETAILS PAGE.

    Dear friends,
    Please help me with this scenario.Thanks so much for your help.
    Task: ADDING A NEW ITEM IN THE CREDIT REQUEST DETAILS PAGE.
    Need to create a new item on this page called "approver notes" (column notes).
    Can this be achieved by personalization?
    Scenario:
    On credit request details page disputed invoice number, request date, status, bill to, ship to, etc are displayed.
    When the status is "not approved”, item should be displayed along the "rejected" comment.
    If the status is other than "not approved" then the item should not be displayed.

    what page is this ? are you sure it is a OAF page ?
    If it is a OAF page, you would need to extend the controller to fire a partial action for the item and then control the display property of the comments field
    Tapash

  • Adding a new server in the menu of SAP GUI 640

    Hello Everybody,
    While adding a new server to the menu of SAP GUI 640 using Server Tab after entering all details like :
    1] SAP System ID
    2] Hostname where message server is running
    3] SAP ROUTER :None
    After filling all the above details and after pressing the Generate List Button I am getting the following error .Please help me to know why this error is coming and suggest a solutio for adding a new server to my SAP GUI 640.But I am able to add a new server using User defined tab but I want to add a new server using Server tab.
    Below is error details which I am getting:
    Error:service'sapmsSBX'unknown
    Wed Jan 09 06:41:13 2008
    Release 640
    Component NI(network interface),version 37
    rc=-3,module ninti.c,line 463
    Detail NiPGetServByName: service 'sapmsSBX' not found.
    Thanks and Regards,
    Ashish Thakkar.

    Hi,
    check etc/services for sapmsSBX entry. If missing - add it (i.e. sapmsSBX      36XX/tcp - where XX is your instance no.)
    Add an extra [Enter] after last line of etc/services.
    Regs,
    FS

  • Updated to latest I-Tunes. Since then whenever I import a new cd to the library it won't get album artwork.How do I get the artwork. My I-Tunes is set to automatically download missing album artwork but it doesn't work.

    Updated to latest I-Tunes. Since then whenever I import a new cd to the library it does not get the album artwork. Automatically download missing album artwork is enabled in Preferences but the art work still does not appear in my library?

    I'm having the same problem as the OP, I can't find that file "profiles.ini"
    can't re-install firefox, deleted all files related to Mozilla and Firefox, still locked out by missing Firefox profile
    I posted on my own problem recently w/ no response (https://support.mozilla.org/en-US/search?a=1&asked_by=GPStyne&w=2),
    so far all posts on this support page have been confusing and I've been unable to find any of the things they spoke of trying to change it.
    at this point I'm begrudgingly running Safari hoping someone can help me fix this, can't believe i can't just delete all and reinstall like a normal program/app

  • Please add the option to be able to upload/link new pdfs with the in-browser editing. I have a restaurant client who is constantly updating their menu! Please help so they can do this themselves!

    Please add the option to be able to upload/link new pdfs with the in-browser editing. I have a restaurant client who is constantly updating their menu! Please help so they can do this themselves!

    Thank you so much for your help! I am so relieved. I will have explain how to do this to my client, but a big weight is off my back!
    A long learning process and actually such an easy fix. So glad you responded. Again thank you...

  • How do you create a new folder in the library folder

    How do you create a  new folder in the library?

    In the user Library? Open Finder and select Go then press the Option key. In the list you will see your user Library folder (underneath Home). Click it to open it. Now you can add a folder inside. You can left click/hold and drag the Library icon at the top of the Finder window to your Finder Sidebar so it's always avaliable.

  • I write in greek as well as english on my mac (osx mountain lion) problem is, there is no spell checking on pages, and yes, i have added a greek dictionary in the library spelling folder. and i can also select it from the inspector. what's wrong?

    I write in greek as well as english on my mac (osx mountain lion) problem is, there is no spell checking on pages, and yes, i have added a greek dictionary in the library spelling folder. and i can also select it from the inspector. what's wrong?

    You need to give more details:
    1. What version of Pages?
    2. Where did you get the Greek dictionary from and exactly how did you install it?
    3. Are you applying the language to your text?
    Peter

  • Iphoto on my macbook pro has stopped working. It comes up with a message saying that the library is either being used by another user or it is unreadable. Any ideas why I should be receiving this message?

    MacBook Pro 2009
    Model Identifier: MacBookPro5,1
    Processor  2.4 GHz Intel Core 2 Duo
    Memory  4 GB 1067 MHz DDR3
    Software  OS X 10.8.5 (12F45)
    Iphoto '11
    Iphoto on my macbook pro has stopped working. It comes up with a message saying that the library is either being used by another user or it is unreadable. Any ideas why I should be receiving this message?
    "Your photo library is either in use by another application or has become unreadable"
    Offered solution doesn't work:
    Shut down and restart your computer, and then open iPhoto again. If the problem persists, try rebuilding your photo library. To do this, quit iPhoto, and then reopen it while keeping the Option and Command keys pressed. You can also try restoring your photo library from a backup.
    I have already copied my photographs to the a library manager but when I tried to reuse iphoto and import the photos back into iphoto, it would not let me.
    I can't download photographs from my iphone or my digital camera.
    Any ideas on how I can solve this problem?
    There is a possibility that when I went to update applications that I started to install Mavericks which I then interrupted and cancelled. I am not definite that this caused this problem but it was at about the same time as when this problem started.
    Many thanks,
    Ed

    I have already copied my photographs to the a library manager but when I tried to reuse iphoto and import the photos back into iphoto, it would not let me.
    You can't "copy" your photos to the "library manager", there is just no way to any such thing.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • I cannot find my current iPhoto Library.  I cannot remember the exact message but part of it said that the library might be being used by another application.  (Could that be Elements 12)

    I cannot find my current iPhoto Library.  I cannot remember the exact message but part of it said that the library might be being used by another application.  (Could that be Elements 12)

    Rebuild the iPhoto Library > Rebuilding the iPhoto library

  • How can I get the iPad to sync Outlook 2010 in Parallels via iTunes?

    Hi
    I want to be able to sync my iPad with both iCal on the iMac and Outlook 2010 in Microsoft Office 2010, installed in Parallels 7.  What happens is that when I connect the iPad to the iMac (USB) it syncs directly with iCal via iTunes.  How can I get the iPad to sync Outlook 2010 in Parallels via iTunes as well?  Do I have to download and install another copy of iTunes in Windows 7 in Parallels?
    Appreciate your help.
    Kind regards
    Alani

    Don't think that's possible as iOS devices can only be synced to one iTunes library at a time.
    Is there a specific reason you're using Outlook?

Maybe you are looking for

  • Help with script for "Import AD users from CSV with checks first"

    Hi everyone. Can anyone tell me if i am on the right track here? I want to be able to provide a CSV with users and import into a new AD domain/forest. But i know there already are some AD accounts so i need to run some checks. For now i am checking o

  • Nikon D600 and Elements 10

    Hi I recently bought a Nikon D600 and don't seem to be able to load photos onto Photoshop Elements 10.  Any suggested solutions would be most appreciated.  I have tried to install "Updates" from the Help menu but it says that the applications are all

  • Blurry icons on Finder. Solutions?

    For the last month, random icons have become blurry. Restarting fixes it temporarily, but it returs. PRAM reset does nothing, cleaning caches via Coctail is a temp fix. Disk utility is useless. Any solutions, or problems for other people?.

  • Adding audio to a video demo Captivate 8

    How can I add mp3 audio files to a video demonstration I recorded in Captivate 8?  I recorded the demo.  Then, clicked edit.  When I choose Media, the audio option is grayed out and does not let me select.

  • Adobe Reader nor Eula will not open

    I have serached through the threads, but there was no way that I could make Adobe Reader XI nor any other version work again on my computer (Windows 7 Home Premium SP1) I have tried changing the registry entry (HKEY_CURRENT_USER\Software\Adobe\Acroba